aboutsummaryrefslogtreecommitdiffstats
path: root/net/tund/files
diff options
context:
space:
mode:
authorsteve <steve@FreeBSD.org>1999-09-19 01:48:16 +0800
committersteve <steve@FreeBSD.org>1999-09-19 01:48:16 +0800
commit89d5f0c2ae7d600465195295fcbc3198caa4629a (patch)
tree942b101d8077c520643b745ee542175b2ee3b227 /net/tund/files
parent021c86e7bce2d86dcc294fe8b1bbd0af725c9aa3 (diff)
downloadfreebsd-ports-gnome-89d5f0c2ae7d600465195295fcbc3198caa4629a.tar.gz
freebsd-ports-gnome-89d5f0c2ae7d600465195295fcbc3198caa4629a.tar.zst
freebsd-ports-gnome-89d5f0c2ae7d600465195295fcbc3198caa4629a.zip
Update to version 0.20.
PR: 13347 Submitted by: maintainer
Diffstat (limited to 'net/tund/files')
-rw-r--r--net/tund/files/patch-aa19
1 files changed, 19 insertions, 0 deletions
diff --git a/net/tund/files/patch-aa b/net/tund/files/patch-aa
new file mode 100644
index 000000000000..cb11aab93c87
--- /dev/null
+++ b/net/tund/files/patch-aa
@@ -0,0 +1,19 @@
+--- Makefile.orig Fri Sep 17 14:20:52 1999
++++ Makefile Fri Sep 17 14:21:05 1999
+@@ -10,13 +10,13 @@
+ all: rsa_kg pkey_gen tund keygen
+
+ rsa_kg: rsa_kg.c tund.h
+- $(CC) -o rsa_kg rsa_kg.c $(INC) $(LIB) -lcrypto
++ $(CC) -o rsa_kg rsa_kg.c $(INC) $(LIB) -lcrypto $(EXTRA_SSL_LIBS)
+
+ pkey_gen: pkey_gen.c tund.h
+- $(CC) -o pkey_gen pkey_gen.c $(INC) $(LIB) -lcrypto
++ $(CC) -o pkey_gen pkey_gen.c $(INC) $(LIB) -lcrypto $(EXTRA_SSL_LIBS)
+
+ tund: main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o
+- $(CC) -static -o tund main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o $(LIB) -lmd -lcrypto
++ $(CC) -static -o tund main.o tund.o secur.o scb.o utils.o md5.o alarm.o cipher.o search.o $(LIB) -lmd -lcrypto $(EXTRA_SSL_LIBS)
+
+ main.o: main.c tund.h
+ $(CC) -c main.c $(INC)