diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-02-25 23:34:57 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-02-25 23:34:57 +0000 |
commit | d6299cafc8a31a7461ba8f26f4ac08ce5a8d93c6 (patch) | |
tree | 1c89b5d49f389d2b7c55d38ca165c6c16f184aa2 /package/ipsec-tools | |
parent | 7ae75032c1ad9b23f6b4e8e2c9bb45f6cf3991bf (diff) | |
download | upstream-d6299cafc8a31a7461ba8f26f4ac08ce5a8d93c6.tar.gz upstream-d6299cafc8a31a7461ba8f26f4ac08ce5a8d93c6.tar.bz2 upstream-d6299cafc8a31a7461ba8f26f4ac08ce5a8d93c6.zip |
various configure related cleanups
SVN-Revision: 6372
Diffstat (limited to 'package/ipsec-tools')
-rw-r--r-- | package/ipsec-tools/Makefile | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/package/ipsec-tools/Makefile b/package/ipsec-tools/Makefile index 5951649ade..67772f126c 100644 --- a/package/ipsec-tools/Makefile +++ b/package/ipsec-tools/Makefile @@ -31,15 +31,7 @@ define Package/ipsec-tools URL:=http://ipsec-tools.sourceforge.net/ endef -define Build/Configure - (cd $(PKG_BUILD_DIR); touch \ - configure.ac \ - aclocal.m4 \ - Makefile.in \ - config.h.in \ - configure \ - ); - $(call Build/Configure/Default, \ +CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ --with-kernel-headers="$(LINUX_DIR)/include" \ @@ -48,8 +40,17 @@ define Build/Configure --without-libradius \ --without-libpam \ --enable-dpd \ - --enable-natt \ + --enable-natt + +define Build/Configure + (cd $(PKG_BUILD_DIR); touch \ + configure.ac \ + aclocal.m4 \ + Makefile.in \ + config.h.in \ + configure \ ); + $(call Build/Configure/Default) endef # override CFLAGS holding "-Werror" that break builds on compile warnings |