summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/win32/mktexpk.c
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/kpathsea/win32/mktexpk.c
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/kpathsea/win32/mktexpk.c')
-rw-r--r--Build/source/texk/kpathsea/win32/mktexpk.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/Build/source/texk/kpathsea/win32/mktexpk.c b/Build/source/texk/kpathsea/win32/mktexpk.c
index e4bd7c3e5e2..97035a5397d 100644
--- a/Build/source/texk/kpathsea/win32/mktexpk.c
+++ b/Build/source/texk/kpathsea/win32/mktexpk.c
@@ -774,7 +774,7 @@ main (int ac, char **av)
fprintf (stderr, "%s %s\n", execfile, cmd);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, cmd, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, cmd, NULL);
sprintf (cmd, "%s.%sgf", name, dpi);
@@ -796,7 +796,7 @@ main (int ac, char **av)
fprintf (stderr, "%s %s %s\n", execfile, cmd, pkname);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, cmd, pkname, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, cmd, pkname, NULL);
if (_access (pkname, 0) != 0) {
tpkerr ("Failed to make pk from gf.");
@@ -1115,7 +1115,7 @@ skip flag
fprintf (stderr, "%s %s\n", execfile, cmd);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, cmd, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, cmd, NULL);
if (_access (pkname, 0) != 0) {
tpkerr ("ps2pk failed to make pk font.");
@@ -1138,7 +1138,7 @@ skip flag
fprintf (stderr, "%s %s %s\n", execfile, name, dpi);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, name, dpi, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, name, dpi, NULL);
if (_access (pkname, 0) != 0) {
tpkerr ("gsftopk cannot be used.");
@@ -1148,7 +1148,7 @@ skip flag
fprintf (stderr, "%s -q %s %s\n", execfile, name, dpi);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, "-q", name, dpi, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, "-q", name, dpi, NULL);
if (_access (pkname, 0) != 0) {
tpkerr ("ttf2pk failed.");
@@ -1158,7 +1158,7 @@ skip flag
fprintf (stderr, "%s -q -p %s %s\n", execfile, name, dpi);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, "-q -p", name, dpi, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, "-q -p", name, dpi, NULL);
sprintf (cmd, "%s.%sgf", name, dpi);
if (_access (cmd, 0) != 0) {
@@ -1172,7 +1172,7 @@ skip flag
fprintf (stderr, "%s %s %s\n", execfile, cmd, pkname);
strcpy(fullbin, texbindir);
strcat(fullbin, execfile);
- (void) spawnlp (P_WAIT, fullbin, execfile, cmd, pkname, NULL);
+ (void) spawnlp (_P_WAIT, fullbin, execfile, cmd, pkname, NULL);
if (_access (pkname, 0) != 0) {
tpkerr ("All trials failed.");