diff options
author | paul <paul> | 2004-06-09 12:36:05 +0200 |
---|---|---|
committer | paul <paul> | 2004-06-09 12:36:05 +0200 |
commit | 51a8798e8d36dddfdeb6b0bfd01bf32a646e8bb1 (patch) | |
tree | fd1f6e63fc2ee07f7312b5f2409daa6fbe15cc2d | |
parent | 2004-06-06 Paul Jakma <paul.jakma@sun.com> (diff) | |
download | frr-51a8798e8d36dddfdeb6b0bfd01bf32a646e8bb1.tar.xz frr-51a8798e8d36dddfdeb6b0bfd01bf32a646e8bb1.zip |
2004-06-09 Paul Jakma <paul@dishone.st>
* config.h: __attribute__ is a gcc'ism
-rw-r--r-- | lib/ChangeLog | 4 | ||||
-rw-r--r-- | lib/zebra.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog index 05cf29300..3573ac122 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2004-06-09 Paul Jakma <paul@dishone.st> + + * config.h: __attribute__ is a gcc'ism + 2004-06-04 Paul Jakma <paul@dishone.st> * type mismatch fixes diff --git a/lib/zebra.h b/lib/zebra.h index 30377fdb1..ed3024db8 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -215,6 +215,10 @@ typedef int socklen_t; #endif /* BSDI_NRL */ +#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5 +#define __attribute__(x) +#endif /* !__GNUC__ */ + /* The definition of struct in_pktinfo is missing in old version of GLIBC 2.1 (Redhat 6.1). */ #if defined (GNU_LINUX) && ! defined (HAVE_INPKTINFO) |