mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c9decc57c9
Submitted by: rwatson Upgrade to sslproxy.2000_Jan_29, with appropriate changes.
22 lines
499 B
Plaintext
22 lines
499 B
Plaintext
--- Makefile.orig Sat Jan 29 11:36:07 2000
|
|
+++ Makefile Mon Feb 7 17:07:20 2000
|
|
@@ -10,15 +10,13 @@
|
|
|
|
|
|
# if you use cc, remove the -Wall and -g options
|
|
-CC= gcc
|
|
+CC?= gcc
|
|
|
|
-SSLROOT= /usr/local/openssl
|
|
-
|
|
-CFLAGS= -Wall -I$(SSLROOT)/include -O
|
|
+CFLAGS+= -I$(OPENSSLINC)
|
|
# for Solaris 2.x add -DSOLARIS2, for SunOS add -DSUNOS and for HP-UX add
|
|
# -DHP to the CFLAGS variable
|
|
|
|
-LIBS = -L$(SSLROOT)/lib -lssl -lcrypto
|
|
+LIBS = -L$(OPENSSLLIB) -lssl -lcrypto $(EXTRA_SSL_LIBS)
|
|
|
|
OBJ = sslproxy.o
|
|
|