diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-07-15 07:24:28 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2014-07-15 07:24:28 +0000 |
commit | 376082647d10be8cb6f417b0554c2ebf38cfb2fe (patch) | |
tree | 791c0e334deda9bef8015378174c11676fc04c56 /Build/source/texk/web2c/lib | |
parent | 7813f69d31d5f32bc397d7586de6a41f67631f5f (diff) |
Replace the deprecated spawnvp() by _spawnvp(), they differ for 64-bit MinGW
git-svn-id: svn://tug.org/texlive/trunk@34617 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib')
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 5 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index bce3844d032..3874cde447e 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,8 @@ +2014-07-15 Peter Breitenlohner <peb@mppmu.mpg.de> + + * texmfmp.c: Replace the deprecated spawnvp() by _spawnvp(), + they differ for 64-bit MinGW. + 2014-07-04 Akira Kakuto <kakuto@fuk.kinidai.ac.jp> * texmfmp.c: Remove redundant cpp macros (w32 only). diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index 7aae9b5a6a2..f7908936ecc 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -1680,7 +1680,7 @@ parse_options (int argc, string *argv) /* Try to start up the other end if it's not already. */ if (!ipc_is_open ()) { #ifdef WIN32 - if (spawnlp (_P_NOWAIT, IPC_SERVER_CMD, IPC_SERVER_CMD, NULL) != -1) { + if (_spawnlp (_P_NOWAIT, IPC_SERVER_CMD, IPC_SERVER_CMD, NULL) != -1) { #else if (system (IPC_SERVER_CMD) == 0) { #endif |