diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-10-16 23:28:33 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2000-10-16 23:28:33 +0000 |
commit | 70a15fd38a1bc36c6e6248883c124fcc3bc36d7d (patch) | |
tree | 9ecfc5bb9d600900697c99ee6c2dd7778b585342 /sbin/isakmpd | |
parent | ff48e571ba3258758e827b4724efface9b1b4ae7 (diff) |
Merge with EOM 1.78
author: niklas
correct test for GMP feature
Diffstat (limited to 'sbin/isakmpd')
-rw-r--r-- | sbin/isakmpd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/isakmpd/Makefile b/sbin/isakmpd/Makefile index 2a047184ee8..fe80d2f8419 100644 --- a/sbin/isakmpd/Makefile +++ b/sbin/isakmpd/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.28 2000/10/07 06:57:16 niklas Exp $ -# $EOM: Makefile,v 1.77 2000/10/06 22:37:58 niklas Exp $ +# $OpenBSD: Makefile,v 1.29 2000/10/16 23:28:32 niklas Exp $ +# $EOM: Makefile,v 1.78 2000/10/15 21:33:42 niklas Exp $ # # Copyright (c) 1998, 1999, 2000 Niklas Hallqvist. All rights reserved. @@ -145,7 +145,7 @@ SUBDIR+= regress .endif .endfor -.ifdef USE_GMP +.if ${FEATURES:Mgmp} == "gmp" CFLAGS+= -DMP_FLAVOUR=MP_FLAVOUR_GMP LDADD+= -lgmp DPADD+= ${LIBGMP} |