diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-01-22 00:28:26 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2015-01-22 00:28:26 +0000 |
commit | 5a8d26272d1a2b825cbf5beff739f156def3e8fa (patch) | |
tree | ace789619ec7f159c105449d606a88a0977f42d1 /Build/source/texk/web2c | |
parent | 0794bed73f2c8d34ef41e84dcf6a541d424377e4 (diff) |
web2c/luatexdir: LuaTeX 0.79.3 released by Luigi
git-svn-id: svn://tug.org/texlive/trunk@36114 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/NEWS | 29 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luatex.c | 10 |
2 files changed, 33 insertions, 6 deletions
diff --git a/Build/source/texk/web2c/luatexdir/NEWS b/Build/source/texk/web2c/luatexdir/NEWS index a1746ea2d5e..176e1f52656 100644 --- a/Build/source/texk/web2c/luatexdir/NEWS +++ b/Build/source/texk/web2c/luatexdir/NEWS @@ -1,6 +1,33 @@ This file is in the public domain. + +============================================================== +Luatex beta-0.79.3 was released 20150121 (5130) +============================================================== + + +* It's now possible with the MinGW compilers to build luatex and luajittex as DLL + for Windows 32bit/64bit. The files are: + libkpathsea-6.dll luajittex.exe luatex.exe texlua52.dll texluajit.dll + In the next release the build.sh script be updated; for the moment just add + "--enable-shared -disable-native-texlive-build " after --disable-all-pkgs + in TL_MAKE. + Building as DLL was tested only for Windows. + +* When possibile symbols in the exe are now hidden: + this should avoid conflicts with the loading of dynamic shared object. + +* several bugfixes and improvements. The patches for MetaPost + fix seg. faults occourred with wrong inputs. + The functions: + mp_get_numeric_value, mp_get_string_value, mp_get_boolean_value + works if the value is a variable (i.e. not an internal variable, + a loop variable and a macro argument); + only mp_get_numeric_value now has support for loop variable + and internal variable (but still not for macro arguments). + + ============================================================== Luatex beta-0.79.2 was released 20141111 (5082) ============================================================== @@ -2266,7 +2293,7 @@ Other news: we probably introduced new problems as well). * Most (all?) files now have a corrected Copyright header, - and link in $Id: NEWS 5082 2014-11-11 09:58:10Z luigi $ and $URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/NEWS $ into the object file. + and link in $Id: NEWS 5081 2014-11-07 18:38:33Z luigi $ and $URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/NEWS $ into the object file. * Some unnecessary files were removed from the distribution. diff --git a/Build/source/texk/web2c/luatexdir/luatex.c b/Build/source/texk/web2c/luatexdir/luatex.c index 43e056f68aa..5afaef10923 100644 --- a/Build/source/texk/web2c/luatexdir/luatex.c +++ b/Build/source/texk/web2c/luatexdir/luatex.c @@ -24,16 +24,16 @@ #include "luatex_svnversion.h" static const char _svn_version[] = - "$Id: luatex.c 5082 2014-11-11 09:58:10Z luigi $ " + "$Id: luatex.c 5093 2014-12-10 09:41:01Z luigi $ " "$URL: https://foundry.supelec.fr/svn/luatex/trunk/source/texk/web2c/luatexdir/luatex.c $"; #define TeX -int luatex_svn = luatex_svn_revision; +int luatex_svn = 5130; int luatex_version = 79; /* \.{\\luatexversion} */ -int luatex_revision = '2'; /* \.{\\luatexrevision} */ -int luatex_date_info = 2014111100; /* the compile date is now hardwired */ -const char *luatex_version_string = "beta-0.79.2"; +int luatex_revision = '3'; /* \.{\\luatexrevision} */ +int luatex_date_info = 2015012100; /* the compile date is now hardwired */ +const char *luatex_version_string = "beta-0.79.3"; const char *engine_name = my_name; /* the name of this engine */ #include <kpathsea/c-ctype.h> |