diff options
author | manu <manu@pkgsrc.org> | 2004-11-10 16:44:51 +0000 |
---|---|---|
committer | manu <manu@pkgsrc.org> | 2004-11-10 16:44:51 +0000 |
commit | 4ec03a395452809379b9bacb2b75f193cfc9c957 (patch) | |
tree | 4cd278a75540ffe2e3c6b0b2a283b20a01f8a652 /security | |
parent | b789eef46ec03fc3b42b168e127fc148be37de43 (diff) | |
download | pkgsrc-4ec03a395452809379b9bacb2b75f193cfc9c957.tar.gz |
Disable nat-t by default as the kernel does not have support for it
without an unofficial patch yet.
Diffstat (limited to 'security')
-rw-r--r-- | security/ipsec-tools/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/security/ipsec-tools/Makefile b/security/ipsec-tools/Makefile index fcfafb1c35f..ef226555698 100644 --- a/security/ipsec-tools/Makefile +++ b/security/ipsec-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2004/11/10 09:11:34 xtraeme Exp $ +# $NetBSD: Makefile,v 1.5 2004/11/10 16:44:51 manu Exp $ # DISTNAME= ipsec-tools-0.5.pre20041109 @@ -15,8 +15,10 @@ USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-libradius --enable-natt -CONFIGURE_ARGS+= --enable-frag --enable-hybrid +CONFIGURE_ARGS+= --with-libradius --enable-frag --enable-hybrid + +# Require a kernel patch not integrated yet (IPR problem) +#CONFIGURE_ARGS+= --enable-natt SAMPLE_DIR= ${WRKSRC}/src/racoon/samples EXAMPLE_DIR= ${PREFIX}/share/examples/ipsec-tools |