summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/otps
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/otps')
-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);
}