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 | 4fdfc8ee0e7169cfdb3c1479a2f58ba472407277 (patch) | |
tree | d98c20a19eaaeb46679a91061a507b215da9f594 /package/libnl/patches | |
parent | 47a268b30a30c8163ad43b0204af9ef26d423290 (diff) | |
download | upstream-4fdfc8ee0e7169cfdb3c1479a2f58ba472407277.tar.gz upstream-4fdfc8ee0e7169cfdb3c1479a2f58ba472407277.tar.bz2 upstream-4fdfc8ee0e7169cfdb3c1479a2f58ba472407277.zip |
libnl: fix compilation with eglibc (closes: #4785)
SVN-Revision: 15039
Diffstat (limited to 'package/libnl/patches')
-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> |