From 03c291e9628ea9fc35ca1a29e2217742512c773d Mon Sep 17 00:00:00 2001 From: Ken Brown Date: Wed, 9 May 2018 12:43:30 +0000 Subject: x86_64-cygwin update to 2018.1 git-svn-id: svn://tug.org/texlive/trunk@47650 c570f23f-e606-0410-a88d-b1316a301751 --- Master/bin/x86_64-cygwin/dvidvi.exe | Bin 20992 -> 20992 bytes Master/bin/x86_64-cygwin/dvihp | 5 +---- Master/bin/x86_64-cygwin/eptex.exe | Bin 505344 -> 505856 bytes Master/bin/x86_64-cygwin/euptex.exe | Bin 513024 -> 513024 bytes Master/bin/x86_64-cygwin/mktexlsr | 15 +++++++++++++-- Master/bin/x86_64-cygwin/pbibtex.exe | Bin 108032 -> 108032 bytes Master/bin/x86_64-cygwin/pdvitype.exe | Bin 50688 -> 50688 bytes Master/bin/x86_64-cygwin/ppltotf.exe | Bin 61440 -> 61440 bytes Master/bin/x86_64-cygwin/prepmx.exe | Bin 122880 -> 122880 bytes Master/bin/x86_64-cygwin/ptex.exe | Bin 432128 -> 432128 bytes Master/bin/x86_64-cygwin/ptftopl.exe | Bin 48128 -> 48128 bytes Master/bin/x86_64-cygwin/upbibtex.exe | Bin 113664 -> 113664 bytes Master/bin/x86_64-cygwin/updvitype.exe | Bin 53760 -> 53760 bytes Master/bin/x86_64-cygwin/uppltotf.exe | Bin 66048 -> 66048 bytes Master/bin/x86_64-cygwin/uptex.exe | Bin 439808 -> 439808 bytes Master/bin/x86_64-cygwin/uptftopl.exe | Bin 51200 -> 51200 bytes Master/bin/x86_64-cygwin/xdvipdfmx.exe | Bin 878592 -> 879104 bytes 17 files changed, 14 insertions(+), 6 deletions(-) (limited to 'Master') diff --git a/Master/bin/x86_64-cygwin/dvidvi.exe b/Master/bin/x86_64-cygwin/dvidvi.exe index ed1a9328715..a9dd41c0ad6 100755 Binary files a/Master/bin/x86_64-cygwin/dvidvi.exe and b/Master/bin/x86_64-cygwin/dvidvi.exe differ diff --git a/Master/bin/x86_64-cygwin/dvihp b/Master/bin/x86_64-cygwin/dvihp index fdaf3fb87bf..03a2dbe9605 100755 --- a/Master/bin/x86_64-cygwin/dvihp +++ b/Master/bin/x86_64-cygwin/dvihp @@ -6,14 +6,11 @@ : ${DVILJ=dvilj4} # the dvilj variant to run : ${SPOOL=lpr} # used to print an LJ file -: ${TMPDIR=${TEMP-${TMP-/tmp}}} # for the dvicopy output -tmpdir="${TMPDIR}"/dvihp$$ -(umask 077; mkdir "$tmpdir") \ +tmpdir=`mktemp -d` \ || { echo "cannot create directory \`$tmpdir'."; exit 1; } trap ' - cd "${TMPDIR}" test -d "$tmpdir" && { rm -f "$tmpdir"/*; rmdir "$tmpdir"; } exit 0 ' 0 1 2 3 6 7 13 15 diff --git a/Master/bin/x86_64-cygwin/eptex.exe b/Master/bin/x86_64-cygwin/eptex.exe index 42e11996eba..ed066373937 100755 Binary files a/Master/bin/x86_64-cygwin/eptex.exe and b/Master/bin/x86_64-cygwin/eptex.exe differ diff --git a/Master/bin/x86_64-cygwin/euptex.exe b/Master/bin/x86_64-cygwin/euptex.exe index d8c21c66ac7..b30e26bed18 100755 Binary files a/Master/bin/x86_64-cygwin/euptex.exe and b/Master/bin/x86_64-cygwin/euptex.exe differ diff --git a/Master/bin/x86_64-cygwin/mktexlsr b/Master/bin/x86_64-cygwin/mktexlsr index 3161a5317ec..5fde39e2c2d 100755 --- a/Master/bin/x86_64-cygwin/mktexlsr +++ b/Master/bin/x86_64-cygwin/mktexlsr @@ -10,7 +10,7 @@ # Originally written as `texhash' by Thomas Esser, Okt., 1994. # Public domain. -version='$Id: mktexlsr 36855 2015-04-14 12:15:08Z preining $' +version='$Id: mktexlsr 46343 2018-01-17 00:55:32Z preining $' progname=`echo $0 | sed 's%.*/%%'` usage="Usage: $progname [OPTION]... [DIR]... @@ -73,7 +73,18 @@ if tty -s; then verbose=true; else verbose=false; fi dry_run=false trees= -treefile="${TMPDIR-/tmp}/mktexlsrtrees$$.tmp" +# initialize treefile by either mktemp or some random name +# code taken from pdfjam and adjusted +{ + treefile=` + (umask 077 && mktemp "${TMPDIR-/tmp}/mktexlsrtrees.XXXXXXXXXX") 2>/dev/null + ` && test -n "$treefile" && test -f "$treefile" +} || { + ## We'll use awk to make random number, for portability + random=`awk 'END { srand(); printf ("%d\n", rand()*1000000); }' /dev/null` + treefile="${TMPDIR-/tmp}/mktexlsrtrees$$.$random" +} || exit $? + trap 'cd /; rm -f $treefile; test -z "$db_dir_tmp" || rm -rf "$db_dir_tmp"; exit' 0 1 2 3 7 13 15 diff --git a/Master/bin/x86_64-cygwin/pbibtex.exe b/Master/bin/x86_64-cygwin/pbibtex.exe index 8fd4b3a3ddf..a0429760327 100755 Binary files a/Master/bin/x86_64-cygwin/pbibtex.exe and b/Master/bin/x86_64-cygwin/pbibtex.exe differ diff --git a/Master/bin/x86_64-cygwin/pdvitype.exe b/Master/bin/x86_64-cygwin/pdvitype.exe index af07cc78b06..c09d74813f4 100755 Binary files a/Master/bin/x86_64-cygwin/pdvitype.exe and b/Master/bin/x86_64-cygwin/pdvitype.exe differ diff --git a/Master/bin/x86_64-cygwin/ppltotf.exe b/Master/bin/x86_64-cygwin/ppltotf.exe index 7f011102c21..ba1603eace6 100755 Binary files a/Master/bin/x86_64-cygwin/ppltotf.exe and b/Master/bin/x86_64-cygwin/ppltotf.exe differ diff --git a/Master/bin/x86_64-cygwin/prepmx.exe b/Master/bin/x86_64-cygwin/prepmx.exe index 5bf4b3e5aa5..4f71deee722 100755 Binary files a/Master/bin/x86_64-cygwin/prepmx.exe and b/Master/bin/x86_64-cygwin/prepmx.exe differ diff --git a/Master/bin/x86_64-cygwin/ptex.exe b/Master/bin/x86_64-cygwin/ptex.exe index 5b0e7a4134e..655545a96f7 100755 Binary files a/Master/bin/x86_64-cygwin/ptex.exe and b/Master/bin/x86_64-cygwin/ptex.exe differ diff --git a/Master/bin/x86_64-cygwin/ptftopl.exe b/Master/bin/x86_64-cygwin/ptftopl.exe index fd3e407c91e..4a6f2991e2c 100755 Binary files a/Master/bin/x86_64-cygwin/ptftopl.exe and b/Master/bin/x86_64-cygwin/ptftopl.exe differ diff --git a/Master/bin/x86_64-cygwin/upbibtex.exe b/Master/bin/x86_64-cygwin/upbibtex.exe index 33f0e7b8cca..543325356c4 100755 Binary files a/Master/bin/x86_64-cygwin/upbibtex.exe and b/Master/bin/x86_64-cygwin/upbibtex.exe differ diff --git a/Master/bin/x86_64-cygwin/updvitype.exe b/Master/bin/x86_64-cygwin/updvitype.exe index b3ee7a9366b..ed6855b7326 100755 Binary files a/Master/bin/x86_64-cygwin/updvitype.exe and b/Master/bin/x86_64-cygwin/updvitype.exe differ diff --git a/Master/bin/x86_64-cygwin/uppltotf.exe b/Master/bin/x86_64-cygwin/uppltotf.exe index 6c31990e2a0..6601be7396b 100755 Binary files a/Master/bin/x86_64-cygwin/uppltotf.exe and b/Master/bin/x86_64-cygwin/uppltotf.exe differ diff --git a/Master/bin/x86_64-cygwin/uptex.exe b/Master/bin/x86_64-cygwin/uptex.exe index 77021ee96d5..181d0bb55b8 100755 Binary files a/Master/bin/x86_64-cygwin/uptex.exe and b/Master/bin/x86_64-cygwin/uptex.exe differ diff --git a/Master/bin/x86_64-cygwin/uptftopl.exe b/Master/bin/x86_64-cygwin/uptftopl.exe index 391eb695095..8497ee939a8 100755 Binary files a/Master/bin/x86_64-cygwin/uptftopl.exe and b/Master/bin/x86_64-cygwin/uptftopl.exe differ diff --git a/Master/bin/x86_64-cygwin/xdvipdfmx.exe b/Master/bin/x86_64-cygwin/xdvipdfmx.exe index e14ed248023..b26483323fe 100755 Binary files a/Master/bin/x86_64-cygwin/xdvipdfmx.exe and b/Master/bin/x86_64-cygwin/xdvipdfmx.exe differ -- cgit v1.2.3