diff options
author | 2000-10-07 07:00:53 +0000 | |
---|---|---|
committer | 2000-10-07 07:00:53 +0000 | |
commit | 3d354b09510534af093ba29699074c053e464e11 (patch) | |
tree | c24a0001ad7c01a300c60b62a5087a39b3509379 | |
parent | Merge with EOM 1.4 (diff) | |
download | wireguard-openbsd-3d354b09510534af093ba29699074c053e464e11.tar.xz wireguard-openbsd-3d354b09510534af093ba29699074c053e464e11.zip |
Merge with EOM 1.16
author: niklas
Multiple subject name matching, makes certificate interop with PGPnet at least
partly working. Added some error checking.
author: ho
Read in FEATURES for proper operation
author: angelos
No need for NODEBUG.
author: angelos
Use NODEBUG compile flag, so policy.c doesn't barf.
-rw-r--r-- | sbin/isakmpd/regress/x509/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sbin/isakmpd/regress/x509/Makefile b/sbin/isakmpd/regress/x509/Makefile index cf42294a675..ea9feffab78 100644 --- a/sbin/isakmpd/regress/x509/Makefile +++ b/sbin/isakmpd/regress/x509/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.9 2000/04/07 22:06:11 niklas Exp $ -# $EOM: Makefile,v 1.12 2000/03/28 21:22:07 ho Exp $ +# $OpenBSD: Makefile,v 1.10 2000/10/07 07:00:53 niklas Exp $ +# $EOM: Makefile,v 1.16 2000/09/28 12:53:27 niklas Exp $ # # Copyright (c) 1999 Niels Provos. All rights reserved. @@ -39,10 +39,12 @@ PROG= x509test SRCS= x509test.c conf.c log.c libcrypto.c sysdep.c field.c util.c \ - isakmp_fld.c ipsec_fld.c ipsec_num.c isakmp_num.c constants.c + isakmp_fld.c ipsec_fld.c ipsec_num.c isakmp_num.c constants.c \ + cert.c TOPSRC= ${.CURDIR}/../.. TOPOBJ!= cd ${TOPSRC}; printf "all:\n\t@pwd\n" |${MAKE} -f- OS!= awk '/^OS=/ { print $$2 }' ${.CURDIR}/../../Makefile +FEATURES!= awk '/^FEATURES=/ { print $$0 }' ${.CURDIR}/../../Makefile | sed 's/FEATURES=.//' .PATH: ${TOPSRC} ${TOPSRC}/sysdep/${OS} ${TOPOBJ} CFLAGS+= -I${TOPSRC} -I${TOPSRC}/sysdep/${OS} -I${TOPOBJ} -Wall \ -DUSE_X509 @@ -73,9 +75,8 @@ LDADD+= -lcrypto DPADD+= ${LIBCRYPTO} .endif -.if !defined (HAVE_DLOPEN) && !defined (USE_LIBCRYPTO) +.if !defined (HAVE_DLOPEN) && !defined (USE_LIBCRYPTO) || !defined (USE_KEYNOTE) .BEGIN: - @echo X.509 cannot be used in this environmet, skipping... PROG= .endif |