diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2012-03-20 19:24:32 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2012-03-20 19:24:32 +0000 |
commit | 17d5dae239c8e8cca84afffd3672981379536491 (patch) | |
tree | 85066d21a90e83a70d4903caa8424f01984001f9 /bfd/ChangeLog | |
parent | bdb892b99584bfd481ed23c90ad7ceafb31ca791 (diff) | |
download | gdb-17d5dae239c8e8cca84afffd3672981379536491.zip gdb-17d5dae239c8e8cca84afffd3672981379536491.tar.gz gdb-17d5dae239c8e8cca84afffd3672981379536491.tar.bz2 |
PR ld/12742
* configure.in (AC_CHECK_HEADERS): Test for windows.h and dlfcn.h.
* plugin.c: Guard include of dlfcn.h if HAVE_DLFCN_H is defined.
Add windows.h header include if HAVE_WINDOWS_H is defined.
(dlerror): New static function if windows variant is used instead
of dlfcn.h.
(dlclose): Likewise.
(dlopen): Likewise.
(dlsym): Likewise.
* configure: Regenerated.
* config.in: Regenerated.
Diffstat (limited to 'bfd/ChangeLog')
-rw-r--r-- | bfd/ChangeLog | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 735a0ba..762633d 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,17 @@ +2012-03-20 Kai Tietz <ktietz@redhat.com> + + PR ld/12742 + * configure.in (AC_CHECK_HEADERS): Test for windows.h and dlfcn.h. + * plugin.c: Guard include of dlfcn.h if HAVE_DLFCN_H is defined. + Add windows.h header include if HAVE_WINDOWS_H is defined. + (dlerror): New static function if windows variant is used instead + of dlfcn.h. + (dlclose): Likewise. + (dlopen): Likewise. + (dlsym): Likewise. + * configure: Regenerated. + * config.in: Regenerated. + 2012-03-20 H.J. Lu <hongjiu.lu@intel.com> PR ld/13880 |