diff options
author | Nicolas Thill <nico@openwrt.org> | 2006-12-16 22:18:37 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2006-12-16 22:18:37 +0000 |
commit | 770ac9665e523af7050175ddaf0ae69f25ecc67c (patch) | |
tree | e099548d70eb0032d32fc8000f1106aaf10b00f2 /package/isakmpd/Makefile | |
parent | 5df7bab3f0dd9243d7e391d53012bc5071c0c952 (diff) | |
download | upstream-770ac9665e523af7050175ddaf0ae69f25ecc67c.tar.gz upstream-770ac9665e523af7050175ddaf0ae69f25ecc67c.tar.bz2 upstream-770ac9665e523af7050175ddaf0ae69f25ecc67c.zip |
fix isakmpd
SVN-Revision: 5811
Diffstat (limited to 'package/isakmpd/Makefile')
-rw-r--r-- | package/isakmpd/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/package/isakmpd/Makefile b/package/isakmpd/Makefile index 00153fd736..628b97fd94 100644 --- a/package/isakmpd/Makefile +++ b/package/isakmpd/Makefile @@ -26,15 +26,16 @@ include $(INCLUDE_DIR)/kernel.mk define Package/isakmpd SECTION:=net CATEGORY:=Network - DEPENDS:=@BROKEN @LINUX_2_6 +libopenssl +keynote +libgmp + DEPENDS:=@LINUX_2_6 +libopenssl +keynote +libgmp TITLE:=IPsec management tools URL:=http://isakmpd.sourceforge.net/ endef define Build/Compile - $(call Build/Compile/Default,LINUX_DIR="$(LINUX_DIR)" \ - STAGING_DIR="$(STAGING_DIR)" \ - DESTDIR="$(PKG_INSTALL_DIR)" \ + $(call Build/Compile/Default, \ + LINUX_DIR="$(LINUX_DIR)" \ + EXTRA_CPPFLAGS="-I$(STAGING_DIR)/usr/include/openssl -I$(STAGING_DIR)/usr/include/keynote -I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \ + EXTRA_LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \ ) $(MAKE) -C $(PKG_BUILD_DIR) \ STAGING_DIR="$(STAGING_DIR)" \ |