From 10f8c9e49fe535b9c1109d63a993231b35b7f9e6 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 4 Aug 2006 20:30:53 +0000 Subject: [PATCH] fix ipcad compile SVN-Revision: 4449 --- net/ipcad/Makefile | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/net/ipcad/Makefile b/net/ipcad/Makefile index edc5ac9f64..28ba31c3e3 100644 --- a/net/ipcad/Makefile +++ b/net/ipcad/Makefile @@ -27,8 +27,8 @@ define Package/ipcad DEPENDS:=+libpcap TITLE:=listens for traffic on the specified interfaces DESCRIPTION:=This daemon listens for traffic on the specified interfaces.\\\ -It has the built-in RSH and NetFlow engines to allow exporting\\\ -the accounting data the same way as Cisco routers do.\\\ + It has the built-in RSH and NetFlow engines to allow exporting\\\ + the accounting data the same way as Cisco routers do.\\\ URL:=http://lionet.info/ipcad/ endef @@ -38,17 +38,25 @@ endef define Build/Configure -$(call Build/Configure/Default,--enable-shared \ ---disable-static \ ---disable-rpath \ ---with-gnu-ld \ ---with-psrc=pcap \ ---with-pcap-include="$(STAGING_DIR)/usr/include" \ ---with-pcap-libraries="$(STAGING_DIR)/usr/lib",touch cfglex.c cslex.c;) + $(call Build/Configure/Default,--enable-shared \ + --disable-static \ + --disable-rpath \ + --with-gnu-ld \ + --with-psrc=pcap \ + --with-pcap-include="$(STAGING_DIR)/usr/include" \ + --with-pcap-libraries="$(STAGING_DIR)/usr/lib", \ + touch cfglex.c cslex.c; \ + ac_cv_func_getifaddrs=no \ + ac_cv_header_ifaddrs_h=no \ +) endef define Build/Compile $(MAKE) -C $(PKG_BUILD_DIR) \ + $(TARGET_CONFIGURE_OPTS) \ + CFLAGS="$(TARGET_CFLAGS) -DHAVE_PCAP_H=1 -I$(STAGING_DIR)/usr/include" \ + LIBS="-lnsl -pthread -lpcap" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ DESTDIR=$(PKG_INSTALL_DIR) \ all install endef -- 2.30.2