From 376082647d10be8cb6f417b0554c2ebf38cfb2fe Mon Sep 17 00:00:00 2001 From: Peter Breitenlohner Date: Tue, 15 Jul 2014 07:24:28 +0000 Subject: 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 --- Build/source/texk/web2c/lib/ChangeLog | 5 +++++ Build/source/texk/web2c/lib/texmfmp.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'Build/source/texk/web2c/lib') 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 + + * texmfmp.c: Replace the deprecated spawnvp() by _spawnvp(), + they differ for 64-bit MinGW. + 2014-07-04 Akira Kakuto * 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 -- cgit v1.2.3