From 8c599f7005877a4d26a9b675cf6f4da2c1c061f0 Mon Sep 17 00:00:00 2001 From: dscho Date: Thu, 13 Sep 2001 09:49:46 +0000 Subject: Now you can write something in addition to mouse movements ... --- Makefile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 07fcb11..91e6a6c 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ VNCSERVERLIB=-L. -lvncserver -lz -ljpeg # These two lines enable useage of PThreads #CFLAGS += -DHAVE_PTHREADS -VNCSERVERLIB += -lpthread +#VNCSERVERLIB += -lpthread LIBS=$(LDFLAGS) $(VNCSERVERLIB) $(VNCAUTHLIB) @@ -17,7 +17,6 @@ LIBS=$(LDFLAGS) $(VNCSERVERLIB) $(VNCAUTHLIB) OSX_LIBS = -framework ApplicationServices -framework Carbon # for Example -PTHREAD_LIBS = -lpthread SOURCES=main.c rfbserver.c miregion.c auth.c sockets.c xalloc.c \ stats.c corre.c hextile.c rre.c translate.c cutpaste.c \ @@ -39,10 +38,10 @@ libvncserver.a: $(OBJS) $(RANLIB) $@ example: example.o libvncauth/libvncauth.a libvncserver.a - $(CC) -o example example.o $(LIBS) $(PTHREAD_LIBS) + $(CC) -o example example.o $(LIBS) pnmshow: pnmshow.o libvncauth/libvncauth.a libvncserver.a - $(CC) -o pnmshow pnmshow.o $(LIBS) $(PTHREAD_LIBS) + $(CC) -o pnmshow pnmshow.o $(LIBS) OSXvnc-server: mac.o libvncauth/libvncauth.a libvncserver.a $(CC) -o OSXvnc-server mac.o $(LIBS) $(OSX_LIBS) -- cgit v1.1