]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorMark Andrews <marka@isc.org>
Mon, 19 Jul 2004 05:54:08 +0000 (05:54 +0000)
committerMark Andrews <marka@isc.org>
Mon, 19 Jul 2004 05:54:08 +0000 (05:54 +0000)
1669.   [bug]           Only test the gcc minor version when the major version
                        is known.

17 files changed:
lib/bind/port/aix32/include/sys/cdefs.h
lib/bind/port/aix4/include/sys/cdefs.h
lib/bind/port/aux3/include/sys/cdefs.h
lib/bind/port/cygwin/include/sys/cdefs.h
lib/bind/port/hpux/include/sys/cdefs.h
lib/bind/port/hpux10/include/sys/cdefs.h
lib/bind/port/hpux9/include/sys/cdefs.h
lib/bind/port/irix/include/sys/cdefs.h
lib/bind/port/lynxos/include/sys/cdefs.h
lib/bind/port/mpe/include/sys/cdefs.h
lib/bind/port/next/include/sys/cdefs.h
lib/bind/port/qnx/include/sys/cdefs.h
lib/bind/port/sco42/include/sys/cdefs.h
lib/bind/port/solaris/include/sys/cdefs.h
lib/bind/port/sunos/include/sys/cdefs.h
lib/bind/port/unixware20/include/sys/cdefs.h
lib/bind/port/unixware212/include/sys/cdefs.h

index 0c7c9906c7356aeb3b054e524eba5b10d8931c9b..9fdc4d6ddbcb5ca9cff5d2a21ab9d50e70e875e0 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/04/11 01:30:12 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:53:58 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 61fe4dcd14b519c6738339296fff9dfdaf50c7e1..3b2d0a2e8400415038b9193fffddccc71c0e7cc6 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/10 04:23:15 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:53:59 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 965883cee7e76bb690ead3a6e95a70dc7723df70..7c9d241275b776c8daa6f0d0a55c0dd092411e85 100644 (file)
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index a2c123b8834e96ed1113206d64a0d94d82f1f112..d0d39937e9458d7a51649fe149cdd95d8f1cbbdd 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2002/12/27 03:13:51 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:01 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index aca6f0a241988e766f53772f2c0c200d38229760..2cc58f079c74a74ca1b9e55169cdfb7ac8b3a6f5 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/04/09 09:17:16 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:02 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 868f9bfaf8dc11d38bc4ac423bc399b35605d4f0..2cc58f079c74a74ca1b9e55169cdfb7ac8b3a6f5 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:49 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:02 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index d298c13c1876cf011aa01d2d5c5a64d72aeeecb0..8aed23d531fd413182eed851d64e3e70bc0a7f9b 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:50 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:03 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index d298c13c1876cf011aa01d2d5c5a64d72aeeecb0..8aed23d531fd413182eed851d64e3e70bc0a7f9b 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:50 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:03 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 213e34e1898a885a4b3af4776691a620deab211d..e0fd941bff8111022baf3f040ad8b6399f177beb 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:51 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:04 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 5c6264389b5335f49a6afacf1abc137cf2d191df..b83e9a34cfd11b56c9a4c1ffb138e9c187a32010 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:51 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:04 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 8f5d38ef5992f4f0ac275b5cd3e555b06a932084..0bf52d2d89fc5ef44685eeac7aa641aced00830e 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:55 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:05 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index f814b0c0bcadba05fdfcf77a6d88e2461572d8f5..2b3f9ec5be26e06b1e307d16e6ea9848127642d6 100644 (file)
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || \
-       (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 274057c6751e423d8c48e1cafb9012eff67064c1..6c57c8a0ed33132d231765dfd6fb4fa60b43833f 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:57 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:06 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 66950406d10d2e894118e4d4dc04720c9770baf9..67aac00cc7cfb3e7755360c2075f3e713904843a 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/04/02 06:29:20 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:07 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index ce95a0e0054b889992720510e937dffa98b5379f..67aac00cc7cfb3e7755360c2075f3e713904843a 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:25:58 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:07 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index 8b662a1cf185da575ed5146d3135b40750204907..67aac00cc7cfb3e7755360c2075f3e713904843a 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:26:00 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:07 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile
index fa97a4f24db11bdc599d4eabeb287746e15f0a77..7752c58ffdecac185ec0d446c05dd39b52fd5b18 100644 (file)
@@ -55,7 +55,7 @@
 
 /*
  *     @(#)cdefs.h     8.1 (Berkeley) 6/2/93
- *     $Id: cdefs.h,v 1.1 2001/05/17 06:26:01 marka Exp $
+ *     $Id: cdefs.h,v 1.2 2004/07/19 05:54:08 marka Exp $
  */
 
 #ifndef        _CDEFS_H_
  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  * in the distribution version of 2.5.5).
  */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
+#if !defined(__GNUC__) || __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 5)
 #define        __attribute__(x)        /* delete __attribute__ if non-gcc or gcc1 */
 #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
 #define        __dead          __volatile