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").
This commit is contained in:
Thomas Graf 2008-10-10 12:13:52 +02:00
parent 562c5323af
commit d59883b117

View File

@ -26,6 +26,7 @@
#include <sys/socket.h>
#include <inttypes.h>
#include <assert.h>
#include <limits.h>
#include <arpa/inet.h>
#include <netdb.h>