diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-08-24 02:32:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-08-24 02:32:08 +0000 |
commit | 8f2da7e653fab73b1b628731eca01dd904d81a10 (patch) | |
tree | 583fee81c18c2987fb9830138ba5355ad5f8fe60 | |
parent | 5da909e63dc0967408f47763a8f27d70255bd9b0 (diff) |
fix from psm: only define __ASSUME_NETLINK_SUPPORT if not defined
-rw-r--r-- | libc/inet/netlinkaccess.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libc/inet/netlinkaccess.h b/libc/inet/netlinkaccess.h index a47d8901c..417d83a7b 100644 --- a/libc/inet/netlinkaccess.h +++ b/libc/inet/netlinkaccess.h @@ -33,11 +33,13 @@ typedef int32_t __s32; #include <linux/netlink.h> /* Should prob be a configure option or something */ +#ifndef __ASSUME_NETLINK_SUPPORT #ifdef __UCLIBC_USE_NETLINK__ # define __ASSUME_NETLINK_SUPPORT 1 #else # define __ASSUME_NETLINK_SUPPORT 0 #endif +#endif struct netlink_res |