Ulf Samuelsson 18 лет назад
Родитель
Сommit
78f528763b
2 измененных файлов с 7 добавлено и 15 удалено
  1. 1 0
      package/libpcap/Config.in
  2. 6 15
      package/libpcap/libpcap.mk

+ 1 - 0
package/libpcap/Config.in

@@ -1,5 +1,6 @@
 config BR2_PACKAGE_LIBPCAP
 	bool "libpcap"
+	select BR2_PACKAGE_ZLIB
 	default n
 	help
 	  A system-independent library for user-level network packet capture.

+ 6 - 15
package/libpcap/libpcap.mk

@@ -1,6 +1,6 @@
 #############################################################
 #
-# libpcap 
+# libpcap
 #
 #############################################################
 # Copyright (C) 2001-2003 by Erik Andersen <andersen@codepoet.org>
@@ -48,20 +48,10 @@ $(LIBPCAP_DIR)/.configured: $(LIBPCAP_DIR)/.unpacked
 		--host=$(GNU_TARGET_NAME) \
 		--build=$(GNU_HOST_NAME) \
 		--prefix=/usr \
-		--exec-prefix=/usr \
-		--bindir=/usr/bin \
-		--sbindir=/usr/sbin \
-		--libdir=/usr/lib \
-		--libexecdir=/usr/lib \
-		--sysconfdir=/etc \
-		--datadir=/usr/share \
 		--localstatedir=/var \
-		--includedir=/usr/include \
-		--mandir=/usr/man \
-		--infodir=/usr/info \
-		--with-build-cc="$(HOSTCC)" \
+		--mandir=/usr/share/man \
+		--infodir=/usr/share/info \
 		--disable-yydebug \
-		--prefix=/usr \
 		--with-pcap=linux \
 		$(DISABLE_IPV6) \
 	)
@@ -76,8 +66,9 @@ $(STAGING_DIR)/usr/lib/libpcap.a: $(LIBPCAP_DIR)/libpcap.a
 libpcap: uclibc zlib $(STAGING_DIR)/usr/lib/libpcap.a
 
 libpcap-clean:
-	rm -f $(STAGING_DIR)/usr/include/pcap*.h \
-		$(STAGING_DIR)/usr/lib/libpcap.a
+	rm -f $(addprefix $(STAGING_DIR)/usr/,include/pcap*.h \
+					      lib/libpcap.a \
+					      share/man/man?/pcap.*)
 	-$(MAKE) -C $(LIBPCAP_DIR) clean
 
 libpcap-dirclean: