projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
configure switch at boot time based on vlan*ports
[openwrt.git]
/
openwrt
/
package
/
libpcap
/
Makefile
diff --git
a/openwrt/package/libpcap/Makefile
b/openwrt/package/libpcap/Makefile
index
908c364
..
42bac46
100644
(file)
--- a/
openwrt/package/libpcap/Makefile
+++ b/
openwrt/package/libpcap/Makefile
@@
-4,7
+4,7
@@
include $(TOPDIR)/rules.mk
PKG_NAME:=libpcap
PKG_VERSION:=0.8.3
PKG_NAME:=libpcap
PKG_VERSION:=0.8.3
-PKG_RELEASE:=
1
+PKG_RELEASE:=
2
PKG_MD5SUM:=56a9d4615d8354fcfe8cff8c8443c77b
PKG_SOURCE_URL:=http://www.tcpdump.org/release/
PKG_MD5SUM:=56a9d4615d8354fcfe8cff8c8443c77b
PKG_SOURCE_URL:=http://www.tcpdump.org/release/
@@
-18,7
+18,7
@@
include $(TOPDIR)/package/rules.mk
$(eval $(call PKG_template,LIBPCAP,libpcap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
$(eval $(call PKG_template,LIBPCAP,libpcap,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
-$(PKG_BUILD_DIR)/.configured:
$(PKG_BUILD_DIR)/.prepared
+$(PKG_BUILD_DIR)/.configured:
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
$(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS)" \
@@
-48,16
+48,17
@@
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
--enable-shared \
--enable-static \
--disable-yydebug \
--enable-shared \
--enable-static \
--disable-yydebug \
+ --enable-ipv6 \
--with-build-cc=$(HOSTCC) \
--with-pcap=linux \
);
touch $@
--with-build-cc=$(HOSTCC) \
--with-pcap=linux \
);
touch $@
-$(PKG_BUILD_DIR)/.built:
$(PKG_BUILD_DIR)/.configured
+$(PKG_BUILD_DIR)/.built:
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
rm -rf $(PKG_INSTALL_DIR)
mkdir -p $(PKG_INSTALL_DIR)
$(MAKE) -C $(PKG_BUILD_DIR) \
- CCOPT="$(TARGET_CFLAGS)" \
+ CCOPT="$(TARGET_CFLAGS)
-I$(BUILD_DIR)/linux/include
" \
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
touch $@
DESTDIR="$(PKG_INSTALL_DIR)" \
all install
touch $@
@@
-81,5
+82,5
@@
uninstall-dev:
rm -rf $(STAGING_DIR)/usr/include/pcap*
rm -rf $(STAGING_DIR)/usr/lib/libpcap.{a,so*}
rm -rf $(STAGING_DIR)/usr/include/pcap*
rm -rf $(STAGING_DIR)/usr/lib/libpcap.{a,so*}
-compile: install-dev
-clean: uninstall-dev
+compile
-targets
: install-dev
+clean
-targets
: uninstall-dev
This page took
0.02423 seconds
and
4
git commands to generate.