summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/otps/win32
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-08-04 10:39:03 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-08-04 10:39:03 +0000
commit27b522d95b4dc039de771cc95471f84de5200e6e (patch)
tree3cc7cc6486c7034514ccef1389a7e958aa945ece /Build/source/texk/web2c/otps/win32
parent904d31cd2c7f0b13a281f0f1cb2fe0aa05a7b179 (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/win32')
-rw-r--r--Build/source/texk/web2c/otps/win32/ChangeLog4
-rw-r--r--Build/source/texk/web2c/otps/win32/mkocp.c2
-rw-r--r--Build/source/texk/web2c/otps/win32/mkofm.c2
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);
}