diff options
author | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-08-04 10:39:03 +0000 |
---|---|---|
committer | Peter Breitenlohner <peb@mppmu.mpg.de> | 2012-08-04 10:39:03 +0000 |
commit | 27b522d95b4dc039de771cc95471f84de5200e6e (patch) | |
tree | 3cc7cc6486c7034514ccef1389a7e958aa945ece /Build/source/texk/web2c/otps | |
parent | 904d31cd2c7f0b13a281f0f1cb2fe0aa05a7b179 (diff) |
WIN32: Replace P_WAIT by _P_WAIT
git-svn-id: svn://tug.org/texlive/trunk@27306 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/otps')
-rw-r--r-- | Build/source/texk/web2c/otps/win32/ChangeLog | 4 | ||||
-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, 6 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/otps/win32/ChangeLog b/Build/source/texk/web2c/otps/win32/ChangeLog index 5cb6af36010..677cbdd52a2 100644 --- a/Build/source/texk/web2c/otps/win32/ChangeLog +++ b/Build/source/texk/web2c/otps/win32/ChangeLog @@ -1,3 +1,7 @@ +2012-08-03 Peter Breitenlohner <peb@mppmu.mpg.de> + + * mkocp.c, mkofm.c: Replace P_WAIT by _P_WAIT. + 2012-07-15 Peter Breitenlohner <peb@mppmu.mpg.de> * mkocp.c: Pass program name string to kpse_set_program_name. diff --git a/Build/source/texk/web2c/otps/win32/mkocp.c b/Build/source/texk/web2c/otps/win32/mkocp.c index 75bea56d1a8..dceb3ecab06 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 71aeee9d1b2..9ddd714ecaa 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); } |