summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2012-09-10 22:30:52 +0000
committerAlan Modra <amodra@bigpond.net.au>2012-09-10 22:30:52 +0000
commite3081899be7570eb90ccfd5d767950d3a62871ee (patch)
treec4557c0730f0838843a555b675c66ce08af8cd19
parente7de4d8a73938756779ccb9d4501cea527e6817f (diff)
downloadbinutils-redhat-e3081899be7570eb90ccfd5d767950d3a62871ee.tar.gz
* config.in: Disable sanity check for kfreebsd.
-rw-r--r--bfd/ChangeLog4
-rw-r--r--bfd/config.in2
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/config.in2
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/config.in2
-rw-r--r--gold/ChangeLog4
-rw-r--r--gold/config.in2
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/config.in2
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/config.in2
12 files changed, 30 insertions, 6 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 15053f60ea..e678d3a242 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/bfd/config.in b/bfd/config.in
index 20b619dd0d..2fc4897ea9 100644
--- a/bfd/config.in
+++ b/bfd/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__) && !defined(__CONFIG_H__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
# error config.h must be #included before system headers
#endif
#define __CONFIG_H__ 1
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 95ed4c1895..d254df933e 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/binutils/config.in b/binutils/config.in
index 3b3812c3e1..4ed54e9c3c 100644
--- a/binutils/config.in
+++ b/binutils/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__)
# error config.h must be #included before system headers
#endif
diff --git a/gas/ChangeLog b/gas/ChangeLog
index cbc8f2ff25..811eb13507 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/gas/config.in b/gas/config.in
index b1bdf8f499..411710ea24 100644
--- a/gas/config.in
+++ b/gas/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__) && !defined(__CONFIG_H__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
# error config.h must be #included before system headers
#endif
#define __CONFIG_H__ 1
diff --git a/gold/ChangeLog b/gold/ChangeLog
index e481713d3d..c7488efe88 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 Sterling Augustine <saugustine@google.com>
* gdb-index.cc (Gdb_index::pubnames_read): New parameter.
diff --git a/gold/config.in b/gold/config.in
index 3edc0d684f..42252bf5a5 100644
--- a/gold/config.in
+++ b/gold/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__) && !defined(__CONFIG_H__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
# error config.h must be #included before system headers
#endif
#define __CONFIG_H__ 1
diff --git a/ld/ChangeLog b/ld/ChangeLog
index bb4ff85e93..9641ccc42c 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/ld/config.in b/ld/config.in
index 5fbc4a3902..f4a8a23e8f 100644
--- a/ld/config.in
+++ b/ld/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__) && !defined(__CONFIG_H__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
# error config.h must be #included before system headers
#endif
#define __CONFIG_H__ 1
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index eb543d268f..13b0173fe0 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-10 Matthias Klose <doko@ubuntu.com>
+
+ * config.in: Disable sanity check for kfreebsd.
+
2012-09-10 H.J. Lu <hongjiu.lu@intel.com>
* configure: Regenerated.
diff --git a/opcodes/config.in b/opcodes/config.in
index 7b97957143..9555f7db7c 100644
--- a/opcodes/config.in
+++ b/opcodes/config.in
@@ -2,7 +2,7 @@
/* Check that config.h is #included before system headers
(this works only for glibc, but that should be enough). */
-#if defined(__GLIBC__) && !defined(__CONFIG_H__)
+#if defined(__GLIBC__) && !defined(__FreeBSD_kernel__) && !defined(__CONFIG_H__)
# error config.h must be #included before system headers
#endif
#define __CONFIG_H__ 1