1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/net/pipsecd/files/patch-aa

32 lines
866 B
Plaintext
Raw Normal View History

1999-10-19 04:55:39 +00:00
--- Makefile.orig Thu Sep 16 17:44:50 1999
+++ Makefile Thu Oct 14 10:27:50 1999
@@ -6,10 +6,13 @@
CLEANFILES= *.core *.o pipsecd
# Where your OpenSSL includes are located
-INCDIR=/usr/local/ssl/include
1999-10-19 04:55:39 +00:00
+INCDIR=-I$(PREFIX)/include/openssl -I$(PREFIX)/include
# Where your libcrypto is located
-LIBDIR=/usr/local/ssl/lib
+LIBDIR=-L$(PREFIX)/lib
+
1999-10-19 04:55:39 +00:00
+# Misc defines
+DEFINES=-DFILE_PREFIX=\"$(PREFIX)\"
1999-10-19 04:55:39 +00:00
# Optional: use FreeBSD's libmd
#OPTLIB += -lmd
@@ -19,10 +22,10 @@
#OPTDEF += -DUSE_ETHERTAP
pipsecd: tunip.c defs.h
1999-10-19 04:55:39 +00:00
- gcc -Wall -I$(INCDIR) -g $(OPTDEF) -o pipsecd tunip.c -L$(LIBDIR) $(OPTLIB) -lcrypto
+ gcc -Wall $(INCDIR) -g $(OPTDEF) -o pipsecd tunip.c $(LIBDIR) $(OPTLIB) -lcrypto -lRSAglue -lrsaref $(DEFINES)
install: pipsecd
1999-10-19 04:55:39 +00:00
- install pipsecd /usr/local/sbin/
+ install pipsecd $(PREFIX)/sbin/
tar:
tar cfvz tunip.tar.gz $(DISTFILES)