summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorniklas <niklas@openbsd.org>1998-07-27 21:13:09 +0000
committerniklas <niklas@openbsd.org>1998-07-27 21:13:09 +0000
commit87445a2faf2541f1fdcb97f8c5e7397fc34d4221 (patch)
tree32e48ca7148bb6e0532a36c9af252ce5ef51a550
parentLIBGMP was missing (diff)
downloadwireguard-openbsd-87445a2faf2541f1fdcb97f8c5e7397fc34d4221.tar.xz
wireguard-openbsd-87445a2faf2541f1fdcb97f8c5e7397fc34d4221.zip
Library dependencies
-rw-r--r--sbin/ipsec/photurisd/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/ipsec/photurisd/Makefile b/sbin/ipsec/photurisd/Makefile
index 49091a7efa1..5d06a94b1ef 100644
--- a/sbin/ipsec/photurisd/Makefile
+++ b/sbin/ipsec/photurisd/Makefile
@@ -1,5 +1,6 @@
PROG= photurisd
-LDADD= -lgmp -ldes
+LDADD= -lgmp -ldes
+DPADD= ${LIBGMP} ${LIBDES}
SRCS= photuris_cookie_request.c photuris_cookie_response.c \
photuris_value_request.c photuris_value_response.c \
photuris_identity_request.c photuris_identity_response.c \
@@ -16,7 +17,7 @@ SRCS= photuris_cookie_request.c photuris_cookie_response.c \
modulus.c spi.c state.c validity.c attributes.c \
photurisd.c packet.c api.c kernel.c
-CFLAGS+= -I. -DIPSEC
+CFLAGS+= -I. -DIPSEC -DDEBUG
MAN= photurisd.8
.include <bsd.prog.mk>