diff options
author | Thomas Graf <tgr@plip.localdomain> | 2008-10-10 10:13:52 (GMT) |
---|---|---|
committer | Thomas Graf <tgr@plip.localdomain> | 2008-10-10 10:13:52 (GMT) |
commit | d59883b117caecd19a9de58164defcc9a91a0caa (patch) | |
tree | 1f22c7c2181dda8c0cb4b713282af696dcc678f7 | |
parent | 562c5323af89b4386eabf90aaf47bb67dca0fb6e (diff) | |
download | libnl-d59883b117caecd19a9de58164defcc9a91a0caa.zip libnl-d59883b117caecd19a9de58164defcc9a91a0caa.tar.gz libnl-d59883b117caecd19a9de58164defcc9a91a0caa.tar.bz2 |
From: Kees Cook <kees@outflux.net>
Hello! It seems that libnl is missing an include for limits.h, which
causes it to FTBFS when glibc 2.8 is installed (currently in
experimental, so I left this bug severity at "normal").
-rw-r--r-- | include/netlink-local.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/netlink-local.h b/include/netlink-local.h index 3942a4a..958ac23 100644 --- 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> |