]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
2076. [bug] Several files were missing #include <config.h>
authorMark Andrews <marka@isc.org>
Thu, 24 Aug 2006 00:43:40 +0000 (00:43 +0000)
committerMark Andrews <marka@isc.org>
Thu, 24 Aug 2006 00:43:40 +0000 (00:43 +0000)
                        causing build failures on OSF. [RT #16341]

CHANGES
bin/tests/journalprint.c
lib/isc/nothreads/condition.c
lib/isc/nothreads/mutex.c
lib/isc/unix/fsaccess.c
lib/isc/unix/ipv6.c
lib/lwres/gai_strerror.c

diff --git a/CHANGES b/CHANGES
index 69616368e2487a016b0e0616cd26b816ec06d86f..17d7606229b0dba27a5439e73f1e3511ed7cf22c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+2076.  [bug]           Several files were missing #include <config.h>
+                       causing build failures on OSF. [RT #16341]
 
        --- 9.2.7rc1 released ---
 
index eb807bd07e7e916195c533af0f1d840dbc087a4e..18e7aa396d4119d2f37e1194ef00cf81d6586979 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: journalprint.c,v 1.3.2.3 2005/03/17 03:59:31 marka Exp $ */
+/* $Id: journalprint.c,v 1.3.2.4 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 #include <isc/mem.h>
 #include <isc/util.h>
index bf4d25694d379d55b50b021f202ad15374127d7b..0988d5ed64b270911a78f93d6e5d661a01dd5235 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: condition.c,v 1.4.2.1 2004/03/09 06:12:04 marka Exp $ */
+/* $Id: condition.c,v 1.4.2.2 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 /*
  * This file intentionally left blank.
@@ -25,6 +27,7 @@
  * Well, not completely.  The stupid hack below shuts up compilers
  * from complaining about an empty file.
  */
+
 static void
 isc_condition_nothreads(void) {
        isc_condition_nothreads();
index 61f971010a5fd3462636e523ce7a810b56e6e02c..188e234343165257274e0bbb8fadcd277aee98d5 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: mutex.c,v 1.4.2.1 2004/03/09 06:12:04 marka Exp $ */
+/* $Id: mutex.c,v 1.4.2.2 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 /*
  * Well, not completely.  The stupid hack below shuts up compilers
index 06c94e5e4f74db9521aeab4f56c02fe4640c0cc8..50b2aff9abab911c4fa1ceece53f730fdfda262f 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: fsaccess.c,v 1.6.2.1 2004/03/09 06:12:10 marka Exp $ */
+/* $Id: fsaccess.c,v 1.6.2.2 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 #include <sys/types.h>
 #include <sys/stat.h>
index 1ff10cb2c0e0bd104b3cef73afdf526dc2267491..efca8fcad844dc5ba8de1b8af2742208eab5d848 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: ipv6.c,v 1.7.2.1 2004/03/09 06:12:10 marka Exp $ */
+/* $Id: ipv6.c,v 1.7.2.2 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 #include <isc/ipv6.h>
 
index c6d2fa738eb5710767234bc37e8ab1f0b52e0c35..9a3ecbf9b881c209daa6f0368754df19aa0c95b4 100644 (file)
@@ -15,7 +15,9 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: gai_strerror.c,v 1.14.2.2 2004/03/09 06:12:33 marka Exp $ */
+/* $Id: gai_strerror.c,v 1.14.2.3 2006/08/24 00:43:40 marka Exp $ */
+
+#include <config.h>
 
 #include <lwres/netdb.h>