diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-04-01 21:07:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-04-01 21:07:34 +0000 |
commit | 5a13c607715592f0933498914df10ebb597c7eff (patch) | |
tree | ddf5c5ef127f7b30cbd40989fa7e4b563ab3f20b /package/libs/libpcap/Makefile | |
parent | 2a390f57063976c854b9bacf88c6bd8afa6d018f (diff) | |
download | upstream-5a13c607715592f0933498914df10ebb597c7eff.tar.gz upstream-5a13c607715592f0933498914df10ebb597c7eff.tar.bz2 upstream-5a13c607715592f0933498914df10ebb597c7eff.zip |
libpcap: update to 1.3.0
Disabled canusb by setting ac_cv_header_libusb_1_0_libusb_h to no in
Makefile. Upstream configure script ignores --disable-canusb.
Signed-off-by: Russell Senior <russell@personaltelco.net>
SVN-Revision: 36150
Diffstat (limited to 'package/libs/libpcap/Makefile')
-rw-r--r-- | package/libs/libpcap/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/package/libs/libpcap/Makefile b/package/libs/libpcap/Makefile index de77c0018a..75b5487215 100644 --- a/package/libs/libpcap/Makefile +++ b/package/libs/libpcap/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2011 OpenWrt.org +# Copyright (C) 2006-2013 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libpcap -PKG_VERSION:=1.1.1 -PKG_RELEASE:=2 +PKG_VERSION:=1.3.0 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=http://www.tcpdump.org/release/ -PKG_MD5SUM:=1bca27d206970badae248cfa471bbb47 +PKG_MD5SUM:=f78455a92622b7a3c05c58b6ad1cec7e PKG_MAINTAINER:=Felix Fietkau <nbd@openwrt.org> @@ -45,7 +45,9 @@ TARGET_CFLAGS += \ -fdata-sections CONFIGURE_VARS += \ - ac_cv_linux_vers=$(LINUX_VERSION) + ac_cv_linux_vers=$(LINUX_VERSION) \ + ac_cv_header_libusb_1_0_libusb_h=no + CONFIGURE_ARGS += \ --enable-shared \ |