diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-06-07 12:37:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-06-07 12:37:49 +0000 |
commit | fe596f2c95120b540e5a645eed464e853d55acc0 (patch) | |
tree | 44b73584666f7c005ea8935c1b91ae280c680b2b | |
parent | bcf772116464cb5ab7bfe93075e47a6078ac68ad (diff) | |
download | master-187ad058-fe596f2c95120b540e5a645eed464e853d55acc0.tar.gz master-187ad058-fe596f2c95120b540e5a645eed464e853d55acc0.tar.bz2 master-187ad058-fe596f2c95120b540e5a645eed464e853d55acc0.zip |
iproute2: fix build errors with newer versions of eglibc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@32103 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/iproute2/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/package/iproute2/Makefile b/package/iproute2/Makefile index 640b5658fd..80681f5577 100644 --- a/package/iproute2/Makefile +++ b/package/iproute2/Makefile @@ -63,6 +63,12 @@ define Build/Configure > $(PKG_BUILD_DIR)/include/SNAPSHOT.h endef +ifdef CONFIG_USE_EGLIBC + ifndef CONFIG_EGLIBC_VERSION_2_13 + TARGET_CFLAGS += -DHAVE_SETNS + endif +endif + MAKE_FLAGS += \ EXTRA_CCOPTS="$(TARGET_CFLAGS) -I../include -I$(STAGING_DIR)/usr/include/libnl-tiny" \ KERNEL_INCLUDE="$(LINUX_DIR)/include" \ |