diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-08-21 22:32:14 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-08-21 22:32:14 +0000 |
commit | 5076142aa3d85e3d8a0da1531ae61ecc8e90cf99 (patch) | |
tree | 90daac9b83cc2cf381e92c3e30e0f14d96362857 | |
parent | e43623701c066c20860ffac6dc03ee640090f70a (diff) | |
download | upstream-5076142aa3d85e3d8a0da1531ae61ecc8e90cf99.tar.gz upstream-5076142aa3d85e3d8a0da1531ae61ecc8e90cf99.tar.bz2 upstream-5076142aa3d85e3d8a0da1531ae61ecc8e90cf99.zip |
libpcap: fix kernel version check
SVN-Revision: 17349
-rw-r--r-- | package/libpcap/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/libpcap/Makefile b/package/libpcap/Makefile index eef5ff0640..e54950002d 100644 --- a/package/libpcap/Makefile +++ b/package/libpcap/Makefile @@ -16,6 +16,7 @@ PKG_SOURCE_URL:=http://www.tcpdump.org/release/ PKG_MD5SUM:=9ad1358c5dec48456405eac197a46d3d include $(INCLUDE_DIR)/package.mk +include $(INCLUDE_DIR)/kernel.mk define Package/libpcap SECTION:=libs @@ -48,6 +49,9 @@ endef TARGET_CFLAGS += \ -ffunction-sections -fdata-sections +CONFIGURE_VARS += \ + ac_cv_linux_vers=$(LINUX_VERSION) + CONFIGURE_ARGS += \ --enable-shared \ --enable-static \ |