diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-06 23:46:09 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-06 23:46:09 +0200 |
commit | 84f070020500de40e69e6d00df9d41ecc90a3b23 (patch) | |
tree | df1740e35027649825781183df0b891439b90577 | |
parent | 498c33395f99743206088770c441222c76493378 (diff) | |
download | bird-84f070020500de40e69e6d00df9d41ecc90a3b23.tar bird-84f070020500de40e69e6d00df9d41ecc90a3b23.zip |
IPv6 support compiles on both glibc 2.0 and 2.1.
-rw-r--r-- | TODO | 4 | ||||
-rw-r--r-- | sysdep/linux/sysio.h | 4 |
2 files changed, 3 insertions, 5 deletions
@@ -7,10 +7,6 @@ Core - krt: rescan interfaces when route addition fails? -- tagging of external routes? - -- configure: IPv6 on glibc 2.0? - - Makefile: install target? - forgetting device routes??? diff --git a/sysdep/linux/sysio.h b/sysdep/linux/sysio.h index 0e8ee3d..32bec16 100644 --- a/sysdep/linux/sysio.h +++ b/sysdep/linux/sysio.h @@ -8,8 +8,10 @@ #ifdef IPV6 -#ifdef CONFIG_IPV6_GLIBC_20 +#ifndef IPV6_UNICAST_HOPS +/* Needed on glibc 2.0 systems */ #include <linux/in6.h> +#define CONFIG_IPV6_GLIBC_20 #endif static inline void |