]> git.puffer.fish Git - matthieu/frr.git/commitdiff
2004-06-21 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Mon, 21 Jun 2004 10:35:59 +0000 (10:35 +0000)
committerpaul <paul>
Mon, 21 Jun 2004 10:35:59 +0000 (10:35 +0000)
        * ChangeLog: fix my last update config.h -> zebra.h ;)
        * zebra.h: Fix gcc check.

lib/ChangeLog
lib/zebra.h

index ab390734a4d266ae389929d3cdf4093525c22707..89ade1efe4fc4bd9434d9c445de692452e4122f9 100644 (file)
@@ -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>
 
index 7ba01d5670d724bf8915bfe5ad94c96d808a005f..89e07dea8707f51b747807a20931ce6e4d59cc13 100644 (file)
@@ -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__ */