diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-07-27 21:13:10 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-07-27 21:13:10 +0000 |
commit | ea732e0c9efda72635de9737c12729b65aba0487 (patch) | |
tree | b69d4456057113b98d6e9ff50ff5a86c42ebd9e6 | |
parent | 2fc3eec3c120dcb4737c118084d3122460c6bf40 (diff) |
Library dependencies
-rw-r--r-- | sbin/ipsec/photurisd/Makefile | 5 |
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> |