Commit 7f01e2af authored by Cedric Roux's avatar Cedric Roux

- Bugfix for ubuntu 10.04 sa_family_t is defined in sys/socket.h

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4262 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent d5215b4d
......@@ -48,6 +48,11 @@
#include <error.h>
#include <unistd.h>
/* Bugfix for version of GCC = 4.4.3 (Ubuntu 10.04) */
#if GCC_VERSION <= 40403
# include <sys/socket.h>
#endif
#include <linux/netlink.h>
#include "assertions.h"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment