summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Brown <kbrow1i@gmail.com>2018-05-09 12:45:29 +0000
committerKen Brown <kbrow1i@gmail.com>2018-05-09 12:45:29 +0000
commit1d71ef5cac0b13cd78131aa0f8887ee77fa732aa (patch)
tree030369019e2b09e312be7d8155fc3e0013838398
parent03c291e9628ea9fc35ca1a29e2217742512c773d (diff)
i386-cygwin update to 2018.1
git-svn-id: svn://tug.org/texlive/trunk@47651 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-xMaster/bin/i386-cygwin/dvidvi.exebin20494 -> 21518 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/dvihp5
-rwxr-xr-xMaster/bin/i386-cygwin/eptex.exebin503310 -> 503310 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/euptex.exebin509454 -> 509454 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/mktexlsr15
-rwxr-xr-xMaster/bin/i386-cygwin/pbibtex.exebin111118 -> 111118 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/pdvitype.exebin49678 -> 49678 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/ppltotf.exebin65038 -> 65038 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/prepmx.exebin126990 -> 126990 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/ptex.exebin429582 -> 430094 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/ptftopl.exebin49166 -> 49166 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/upbibtex.exebin114702 -> 114702 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/updvitype.exebin51214 -> 51214 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/uppltotf.exebin67086 -> 67086 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/uptex.exebin435214 -> 435214 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/uptftopl.exebin50702 -> 50702 bytes
-rwxr-xr-xMaster/bin/i386-cygwin/xdvipdfmx.exebin920078 -> 920078 bytes
17 files changed, 14 insertions, 6 deletions
diff --git a/Master/bin/i386-cygwin/dvidvi.exe b/Master/bin/i386-cygwin/dvidvi.exe
index 72ee63f96ea..06ecf0b136a 100755
--- a/Master/bin/i386-cygwin/dvidvi.exe
+++ b/Master/bin/i386-cygwin/dvidvi.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/dvihp b/Master/bin/i386-cygwin/dvihp
index fdaf3fb87bf..03a2dbe9605 100755
--- a/Master/bin/i386-cygwin/dvihp
+++ b/Master/bin/i386-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/i386-cygwin/eptex.exe b/Master/bin/i386-cygwin/eptex.exe
index 4ba5e32a6bf..ef9a7e600d4 100755
--- a/Master/bin/i386-cygwin/eptex.exe
+++ b/Master/bin/i386-cygwin/eptex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/euptex.exe b/Master/bin/i386-cygwin/euptex.exe
index f8e5ee43cc8..491c441ad3a 100755
--- a/Master/bin/i386-cygwin/euptex.exe
+++ b/Master/bin/i386-cygwin/euptex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/mktexlsr b/Master/bin/i386-cygwin/mktexlsr
index 3161a5317ec..5fde39e2c2d 100755
--- a/Master/bin/i386-cygwin/mktexlsr
+++ b/Master/bin/i386-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/i386-cygwin/pbibtex.exe b/Master/bin/i386-cygwin/pbibtex.exe
index e817f4617ae..05cf5eb306a 100755
--- a/Master/bin/i386-cygwin/pbibtex.exe
+++ b/Master/bin/i386-cygwin/pbibtex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/pdvitype.exe b/Master/bin/i386-cygwin/pdvitype.exe
index 5d518b384ab..73efb463254 100755
--- a/Master/bin/i386-cygwin/pdvitype.exe
+++ b/Master/bin/i386-cygwin/pdvitype.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/ppltotf.exe b/Master/bin/i386-cygwin/ppltotf.exe
index 4d3de0cdb29..2c4e219d09d 100755
--- a/Master/bin/i386-cygwin/ppltotf.exe
+++ b/Master/bin/i386-cygwin/ppltotf.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/prepmx.exe b/Master/bin/i386-cygwin/prepmx.exe
index dc7140258c6..2509cc72e7c 100755
--- a/Master/bin/i386-cygwin/prepmx.exe
+++ b/Master/bin/i386-cygwin/prepmx.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/ptex.exe b/Master/bin/i386-cygwin/ptex.exe
index 9956f01d2ed..66af0eeeb71 100755
--- a/Master/bin/i386-cygwin/ptex.exe
+++ b/Master/bin/i386-cygwin/ptex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/ptftopl.exe b/Master/bin/i386-cygwin/ptftopl.exe
index bb9b97c964e..8206ed9b905 100755
--- a/Master/bin/i386-cygwin/ptftopl.exe
+++ b/Master/bin/i386-cygwin/ptftopl.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/upbibtex.exe b/Master/bin/i386-cygwin/upbibtex.exe
index 96727f17233..58e9e040e65 100755
--- a/Master/bin/i386-cygwin/upbibtex.exe
+++ b/Master/bin/i386-cygwin/upbibtex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/updvitype.exe b/Master/bin/i386-cygwin/updvitype.exe
index 5e8424f39ec..9d39919ae6a 100755
--- a/Master/bin/i386-cygwin/updvitype.exe
+++ b/Master/bin/i386-cygwin/updvitype.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/uppltotf.exe b/Master/bin/i386-cygwin/uppltotf.exe
index 7066c08365f..45c019ba4ed 100755
--- a/Master/bin/i386-cygwin/uppltotf.exe
+++ b/Master/bin/i386-cygwin/uppltotf.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/uptex.exe b/Master/bin/i386-cygwin/uptex.exe
index ff1c03b7120..e4f0c8840f2 100755
--- a/Master/bin/i386-cygwin/uptex.exe
+++ b/Master/bin/i386-cygwin/uptex.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/uptftopl.exe b/Master/bin/i386-cygwin/uptftopl.exe
index 849b4e808d7..6f679c2ffe2 100755
--- a/Master/bin/i386-cygwin/uptftopl.exe
+++ b/Master/bin/i386-cygwin/uptftopl.exe
Binary files differ
diff --git a/Master/bin/i386-cygwin/xdvipdfmx.exe b/Master/bin/i386-cygwin/xdvipdfmx.exe
index 0d3288e4e11..f75e8f381e2 100755
--- a/Master/bin/i386-cygwin/xdvipdfmx.exe
+++ b/Master/bin/i386-cygwin/xdvipdfmx.exe
Binary files differ