aboutsummaryrefslogtreecommitdiff
path: root/security/sslwrap/files
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2000-02-06 21:58:21 +0000
committerKris Kennaway <kris@FreeBSD.org>2000-02-06 21:58:21 +0000
commitd5e63f727e097bb9c3288d8c9384942e1498d228 (patch)
tree29605d1dc1af9d6ced6b4d9bc3650194adc2a5ec /security/sslwrap/files
parent5bb50d962a17f89152a093545c6afeb50ebea9d4 (diff)
USE_OPENSSL, respect CC, CFLAGS, LOCALBASE
Assisted by: Jim Bloom <bloom@acm.org>
Notes
Notes: svn path=/head/; revision=25528
Diffstat (limited to 'security/sslwrap/files')
-rw-r--r--security/sslwrap/files/patch-aa25
1 files changed, 19 insertions, 6 deletions
diff --git a/security/sslwrap/files/patch-aa b/security/sslwrap/files/patch-aa
index 81649dffe68d..ec6ed8ba6ab5 100644
--- a/security/sslwrap/files/patch-aa
+++ b/security/sslwrap/files/patch-aa
@@ -1,13 +1,26 @@
---- Makefile.orig Tue Sep 28 07:49:54 1999
-+++ Makefile Sun Dec 26 10:22:14 1999
-@@ -14,8 +14,8 @@
+--- Makefile.orig Tue Sep 28 05:49:54 1999
++++ Makefile Thu Jan 27 23:09:09 2000
+@@ -6,16 +6,19 @@
+
+ # Debug/Optimizations
+ #OPT = -g
+-OPT = -O2
++CFLAGS?=-O2
++OPT = ${CFLAGS}
++
++CC?= gcc
+
+ # Define
+ OPENSSL="\"openssl/\""
+ #OPENSSL=""
all :
- gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
+- gcc -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
- -L/usr/local/ssl/lib -lssl -lcrypto \
- -I/usr/local/ssl/include \
-+ -L${PREFIX}/lib -lssl -lcrypto ${EXTRA_SSL_LIBS} \
-+ -I${PREFIX}/include \
++ ${CC} -o sslwrap ${SRC} ${OPT} -DFLAT_INC -DOPENSSL=${OPENSSL} \
++ -L${OPENSSLLIB} -lssl -lcrypto ${EXTRA_SSL_LIBS} \
++ -I${OPENSSLINC} \
${EXTLIBS}
clean: