summaryrefslogtreecommitdiff
path: root/Build
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-05-06 08:58:17 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-05-06 08:58:17 +0000
commit5f91b4cb30de837a44d64b7c45da3c0fa9c0587c (patch)
treef38c85482619ec7ac1ca15eed13a98c875fe409a /Build
parentd770fad867e3f070ae1661c33b78c0c52bb26677 (diff)
small patch in calledit
git-svn-id: svn://tug.org/texlive/trunk@18122 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rw-r--r--Build/source/texk/web2c/luatexdir/ChangeLog5
-rw-r--r--Build/source/texk/web2c/luatexdir/luatex.c4
-rw-r--r--Build/source/texk/web2c/luatexdir/luatex_svnversion.h2
3 files changed, 8 insertions, 3 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog
index c24fc437d80..364ebd61b3e 100644
--- a/Build/source/texk/web2c/luatexdir/ChangeLog
+++ b/Build/source/texk/web2c/luatexdir/ChangeLog
@@ -1,3 +1,8 @@
+2010-05-06 Taco Hoekwater <taco@luatex.org>
+
+ * luatex.c (calledit): use ifdef __MINGW32__ instead of WIN32.
+ * luatex_svnversion.h: updated to reflect the version of 0.60.x branch
+
2010-04-28 Taco Hoekwater <taco@luatex.org>
* tex/maincontrol.w: Fixed the error message for improper
diff --git a/Build/source/texk/web2c/luatexdir/luatex.c b/Build/source/texk/web2c/luatexdir/luatex.c
index 66ddbc49dcb..7a53581f492 100644
--- a/Build/source/texk/web2c/luatexdir/luatex.c
+++ b/Build/source/texk/web2c/luatexdir/luatex.c
@@ -15,7 +15,7 @@
#include "luatex_svnversion.h"
static const char _svn_version[] =
- "$Id: luatex.c 3637 2010-04-20 13:44:56Z taco $ "
+ "$Id: luatex.c 3678 2010-05-06 08:46:53Z taco $ "
"$URL: http://foundry.supelec.fr/svn/luatex/branches/0.60.x/source/texk/web2c/luatexdir/luatex.c $";
#define TeX
@@ -925,7 +925,7 @@ calledit(packedASCIIcode * filename,
*temp = 0;
/* Execute the command. */
-#ifdef WIN32
+#ifdef __MINGW32__
/* Win32 reimplementation of the system() command
provides opportunity to call it asynchronously */
if (win32_system(command, true) != 0)
diff --git a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
index a1df3ebd821..fd73e149f92 100644
--- a/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
+++ b/Build/source/texk/web2c/luatexdir/luatex_svnversion.h
@@ -1 +1 @@
-#define luatex_svn_revision 3659
+#define luatex_svn_revision 3678