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/otps | |
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/otps')
-rw-r--r-- | Build/source/texk/web2c/otps/win32/ChangeLog | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/otps/win32/mkocp.c | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/otps/win32/mkofm.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/otps/win32/ChangeLog b/Build/source/texk/web2c/otps/win32/ChangeLog index 677cbdd52a2..499a073e740 100644 --- a/Build/source/texk/web2c/otps/win32/ChangeLog +++ b/Build/source/texk/web2c/otps/win32/ChangeLog @@ -1,3 +1,9 @@ +2014-07-15 Peter Breitenlohner <peb@mppmu.mpg.de> + + * mkocp.c: Replace the deprecated spawnlp() by _spawnlp(). + * mkofm.c: Replace the deprecated spawnvp() by _spawnvp(), + they differ for 64-bit MinGW. + 2012-08-03 Peter Breitenlohner <peb@mppmu.mpg.de> * mkocp.c, mkofm.c: Replace P_WAIT by _P_WAIT. diff --git a/Build/source/texk/web2c/otps/win32/mkocp.c b/Build/source/texk/web2c/otps/win32/mkocp.c index dceb3ecab06..595ea346d31 100644 --- a/Build/source/texk/web2c/otps/win32/mkocp.c +++ b/Build/source/texk/web2c/otps/win32/mkocp.c @@ -50,7 +50,7 @@ int main(int ac, char **av) /* COMMAND */ - spawnlp(_P_WAIT, "otp2ocp", "otp2ocp", name, NULL); + _spawnlp(_P_WAIT, "otp2ocp", "otp2ocp", name, NULL); /* END COMMAND */ diff --git a/Build/source/texk/web2c/otps/win32/mkofm.c b/Build/source/texk/web2c/otps/win32/mkofm.c index 9ddd714ecaa..cb6ef4cd8eb 100644 --- a/Build/source/texk/web2c/otps/win32/mkofm.c +++ b/Build/source/texk/web2c/otps/win32/mkofm.c @@ -5,5 +5,5 @@ int main(int argc, char *argv[]) { strcpy(argv[0], "mkofm"); - return spawnvp(_P_WAIT, "mktextfm.exe", (const char* const*)argv); + return _spawnvp(_P_WAIT, "mktextfm.exe", (const char* const*)argv); } |