summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorpaul <paul>2004-06-21 12:35:59 +0200
committerpaul <paul>2004-06-21 12:35:59 +0200
commit138ce75fd0254072f27ecf38994a90276b276730 (patch)
tree381589b0aa5f3bd18855ed594e4c88811a31262e /lib
parentRemove ifdef's HAVE_NSSA. NSSA support is stable enough. (diff)
downloadfrr-138ce75fd0254072f27ecf38994a90276b276730.tar.xz
frr-138ce75fd0254072f27ecf38994a90276b276730.zip
2004-06-21 Paul Jakma <paul@dishone.st>
* ChangeLog: fix my last update config.h -> zebra.h ;) * zebra.h: Fix gcc check.
Diffstat (limited to 'lib')
-rw-r--r--lib/ChangeLog7
-rw-r--r--lib/zebra.h2
2 files changed, 7 insertions, 2 deletions
diff --git a/lib/ChangeLog b/lib/ChangeLog
index ab390734a..89ade1efe 100644
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-21 Paul Jakma <paul@dishone.st>
+
+ * ChangeLog: fix my last update config.h -> zebra.h ;)
+ * zebra.h: Fix gcc check.
+
2004-06-11 Sowmini Varadhan <sowmini.varadhan@sun.com>
* filter.c: (access_list_remark_cmd) buffer_putstr doesnt need cast
@@ -18,7 +23,7 @@
2004-06-09 Paul Jakma <paul@dishone.st>
- * config.h: __attribute__ is a gcc'ism
+ * zebra.h: __attribute__ is a gcc'ism
2004-06-04 Paul Jakma <paul@dishone.st>
diff --git a/lib/zebra.h b/lib/zebra.h
index 7ba01d567..89e07dea8 100644
--- a/lib/zebra.h
+++ b/lib/zebra.h
@@ -230,7 +230,7 @@ typedef int socklen_t;
#define CMSG_LEN(l) (_CMSG_DATA_ALIGN(sizeof(struct cmsghdr)) + (l))
#endif /* CMSG_LEN */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !(defined(__GNUC__) || defined(VTYSH_EXTRACT_PL))
#define __attribute__(x)
#endif /* !__GNUC__ */