diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-04-29 19:26:06 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-04-29 19:26:06 +0300 |
commit | 19a69bafc0913f13e334b5f56d95c693fab29023 (patch) | |
tree | b3f1d061b1a72d5f7e74a60831d85362f41fafe1 /ChangeLog | |
parent | 9a7fe22b197770271a2235062fe52cb1c71a3d9e (diff) | |
download | gunmake-19a69bafc0913f13e334b5f56d95c693fab29023.tar.gz |
Support dynamic object loading on MS-Windows.
w32/include/dlfcn.h: New file.
w32/compat/posixfcn.c: Include dlfcn.h.
(dlopen, dlerror, dlsym) [MAKE_LOAD]: New functions, in support of
dynamic loading.
config.h.W32.template (MAKE_LOAD): Define.
load.c (load_object) [HAVE_DOS_PATHS]: Support backslashes and
drive letters in file names of dynamic objects.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -1,5 +1,16 @@ 2013-04-29 Eli Zaretskii <eliz@gnu.org> + * w32/include/dlfcn.h: New file. + + * w32/compat/posixfcn.c: Include dlfcn.h. + (dlopen, dlerror, dlsym) [MAKE_LOAD]: New functions, in support of + dynamic loading. + + * config.h.W32.template (MAKE_LOAD): Define. + + * load.c (load_object) [HAVE_DOS_PATHS]: Support backslashes and + drive letters in file names of dynamic objects. + * job.c (construct_command_argv_internal) [WINDOWS32]: Return right after generating new_argv for one_shell case. This fixes the Windows build for both Unixy shell and stock Windows shells. |