aboutsummaryrefslogtreecommitdiff
path: root/ld/ChangeLog
diff options
context:
space:
mode:
authorDave Korn <dave.korn@artimi.com>2010-10-15 16:21:41 +0000
committerDave Korn <dave.korn@artimi.com>2010-10-15 16:21:41 +0000
commit3917d5d5ca1bed255ee9bd0a0b38360505ce5b4c (patch)
tree2cd98ae08c668c0f8121c6421d40f1e68f3a6697 /ld/ChangeLog
parentd4cb7acdd8134607c321fc33c91696d672f49b1d (diff)
downloadfsf-binutils-gdb-3917d5d5ca1bed255ee9bd0a0b38360505ce5b4c.zip
fsf-binutils-gdb-3917d5d5ca1bed255ee9bd0a0b38360505ce5b4c.tar.gz
fsf-binutils-gdb-3917d5d5ca1bed255ee9bd0a0b38360505ce5b4c.tar.bz2
Provide win32-based dlapi replacements on windows platforms without dlfcn.h.
ld/ChangeLog: * configure.in: If <dlfcn.h> can't be found, try for <Windows.h> * configure: Regenerate. * config.in: Likewise. * plugin.c [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlopen): Provide trival LoadLibrary-based replacement for Windows systems. [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlsym): Likewise trivial replacement based on GetProcAddress. [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlsym): Likewise FreeLibrary. * sysdep.h: Don't infer presence of <dlfcn.h> from ENABLE_PLUGINS anymore, use its own guard.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r--ld/ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 85c784a..e0a3e61 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,5 +1,18 @@
2010-10-15 Dave Korn <dave.korn.cygwin@gmail.com>
+ * configure.in: If <dlfcn.h> can't be found, try for <Windows.h>
+ * configure: Regenerate.
+ * config.in: Likewise.
+ * plugin.c [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlopen): Provide
+ trival LoadLibrary-based replacement for Windows systems.
+ [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlsym): Likewise trivial
+ replacement based on GetProcAddress.
+ [!HAVE_DLFCN_H && HAVE_WINDOWS_H] (dlsym): Likewise FreeLibrary.
+ * sysdep.h: Don't infer presence of <dlfcn.h> from ENABLE_PLUGINS
+ anymore, use its own guard.
+
+2010-10-15 Dave Korn <dave.korn.cygwin@gmail.com>
+
* plugin.c (add_input_file): Take copy of input string.
(add_input_library): Likewise.
(set_extra_library_path): Likewise.