From 74e69f90e73006c3778c239b849b4dcafd097559 Mon Sep 17 00:00:00 2001 From: Mark Janssen Date: Mon, 6 Feb 2006 12:46:07 +0000 Subject: [PATCH] Updated makefiles (some didn't include ntlm.o) Darwin uses libcrypto, not libssl git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@91 bc163920-b10d-0410-b2c5-a5491ca2ceef --- Makefile.cygwin | 1 + Makefile.darwin | 5 +++-- Makefile.no-gcc | 1 + Makefile.no-gnu-getopts | 1 + Makefile.solaris | 1 + 5 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.cygwin b/Makefile.cygwin index ea90596..cff5344 100755 --- a/Makefile.cygwin +++ b/Makefile.cygwin @@ -13,6 +13,7 @@ OBJ = proxytunnel.o \ base64.o \ io.o \ http.o \ + ntlm.o \ basicauth.o \ messages.o \ cmdline.o diff --git a/Makefile.darwin b/Makefile.darwin index 808f934..bd85347 100755 --- a/Makefile.darwin +++ b/Makefile.darwin @@ -3,8 +3,8 @@ # Please uncomment the appropriate settings CC ?= gcc -CFLAGS ?= -Wall -DDARWIN -LDFLAGS ?= -lssl +CFLAGS ?= -Wall -DDARWIN -DHAVE_GETOPT_LONG +LDFLAGS ?= -lcrypto INSTALLPATH ?= $(DESTDIR)/usr/local/bin MANPATH ?= $(DESTDIR)/usr/local/man/man1 @@ -12,6 +12,7 @@ PROGNAME = proxytunnel OBJ = proxytunnel.o \ base64.o \ io.o \ + ntlm.o \ http.o \ basicauth.o \ messages.o \ diff --git a/Makefile.no-gcc b/Makefile.no-gcc index 4b52ab1..e081d2c 100644 --- a/Makefile.no-gcc +++ b/Makefile.no-gcc @@ -12,6 +12,7 @@ OBJ = proxytunnel.o \ base64.o \ io.o \ http.o \ + ntlm.o \ basicauth.o \ messages.o \ cmdline.o diff --git a/Makefile.no-gnu-getopts b/Makefile.no-gnu-getopts index 7fb3b17..9ed5923 100755 --- a/Makefile.no-gnu-getopts +++ b/Makefile.no-gnu-getopts @@ -13,6 +13,7 @@ OBJ = proxytunnel.o \ base64.o \ io.o \ http.o \ + ntlm.o \ basicauth.o \ messages.o \ cmdline.o diff --git a/Makefile.solaris b/Makefile.solaris index 1c86920..0b6e8f3 100755 --- a/Makefile.solaris +++ b/Makefile.solaris @@ -12,6 +12,7 @@ OBJ = proxytunnel.o \ base64.o \ io.o \ http.o \ + ntlm.o \ basicauth.o \ messages.o \ cmdline.o