diff options
author | Alan Modra <amodra@gmail.com> | 2012-09-10 22:30:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2012-09-10 22:30:57 +0000 |
commit | 00716ab17456adb467b1c9da399da5d0f8a74ae9 (patch) | |
tree | 967517d383bffc290865033c756c50dbdc165f73 /gold | |
parent | 2fa15f237df903f4809733afee950f955559fbf7 (diff) | |
download | gdb-00716ab17456adb467b1c9da399da5d0f8a74ae9.zip gdb-00716ab17456adb467b1c9da399da5d0f8a74ae9.tar.gz gdb-00716ab17456adb467b1c9da399da5d0f8a74ae9.tar.bz2 |
* config.in: Disable sanity check for kfreebsd.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 4 | ||||
-rw-r--r-- | gold/config.in | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index e481713..c7488ef 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 3edc0d6..42252bf 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 |