diff options
author | Nicolas Thill <nico@openwrt.org> | 2009-03-25 15:05:04 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2009-03-25 15:05:04 +0000 |
commit | 43769d037ee5586ca4ef6d7c788651c1ac556c04 (patch) | |
tree | ee4c385e578fa2143128e3b3ac0b91bc1a330d65 /package | |
parent | 07a3803bc3812746ae7198b504b3fe04f8fd5d57 (diff) | |
download | upstream-43769d037ee5586ca4ef6d7c788651c1ac556c04.tar.gz upstream-43769d037ee5586ca4ef6d7c788651c1ac556c04.tar.bz2 upstream-43769d037ee5586ca4ef6d7c788651c1ac556c04.zip |
[package] libnl: fix compilation with eglibc (closes: #4785)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15039 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-rw-r--r-- | package/libnl/patches/170-fix_netlink_local_missing_limits_h.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/package/libnl/patches/170-fix_netlink_local_missing_limits_h.patch b/package/libnl/patches/170-fix_netlink_local_missing_limits_h.patch new file mode 100644 index 0000000000..0d20847079 --- /dev/null +++ b/package/libnl/patches/170-fix_netlink_local_missing_limits_h.patch @@ -0,0 +1,10 @@ +--- a/include/netlink-local.h ++++ b/include/netlink-local.h +@@ -26,6 +26,7 @@ + #include <sys/socket.h> + #include <inttypes.h> + #include <assert.h> ++#include <limits.h> + + #include <arpa/inet.h> + #include <netdb.h> |