diff options
Diffstat (limited to 'Build/source/texk/web2c/pmpostdir')
-rw-r--r-- | Build/source/texk/web2c/pmpostdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/pmpostdir/pmpost.ch | 6 | ||||
-rw-r--r-- | Build/source/texk/web2c/pmpostdir/pmpxout.ch | 10 |
3 files changed, 20 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/pmpostdir/ChangeLog b/Build/source/texk/web2c/pmpostdir/ChangeLog index 7865fcbde62..2f7427eed78 100644 --- a/Build/source/texk/web2c/pmpostdir/ChangeLog +++ b/Build/source/texk/web2c/pmpostdir/ChangeLog @@ -1,3 +1,7 @@ +2014-10-30 Akira Kakuto <kakuto@fuk.kindai.ac.jp> + + * pmpost.ch, pmpxout.ch: Cleanup for pdvitomp and updvitomp. + 2014-10-30 Peter Breitenlohner <peb@mppmu.mpg.de> * pmpost.ch [W32TEX]: Handle building of (u)pmpost.dll. diff --git a/Build/source/texk/web2c/pmpostdir/pmpost.ch b/Build/source/texk/web2c/pmpostdir/pmpost.ch index cb4c2f117ef..9e1bb4d43a4 100644 --- a/Build/source/texk/web2c/pmpostdir/pmpost.ch +++ b/Build/source/texk/web2c/pmpostdir/pmpost.ch @@ -244,6 +244,12 @@ else @z @x + if (FILESTRCASEEQ(base, "dvitomp")) +@y + if (FILESTRCASEEQ(base, P_UP "dvitomp")) +@z + +@x if (dvitomp_only) { @<Read and set dvitomp command line options@>; } else { diff --git a/Build/source/texk/web2c/pmpostdir/pmpxout.ch b/Build/source/texk/web2c/pmpostdir/pmpxout.ch index 0f4acf0f524..eda77848972 100644 --- a/Build/source/texk/web2c/pmpostdir/pmpxout.ch +++ b/Build/source/texk/web2c/pmpostdir/pmpxout.ch @@ -402,6 +402,16 @@ case z0: case four_cases(z1): @z @x + mpx->progname = "dvitomp"; +@y +#ifdef UPMP + mpx->progname = "updvitomp"; +#else + mpx->progname = "pdvitomp"; +#endif +@z + +@x @<Check if mp file is newer than mpxfile, exit if not@>= if (mpx_newer(mpxopt->mpname, mpxopt->mpxname)) return 0 |