diff options
Diffstat (limited to 'Build/source/texk/web2c/luatexdir')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/ChangeLog | 7 | ||||
-rw-r--r-- | Build/source/texk/web2c/luatexdir/luatex.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/luatexdir/ChangeLog b/Build/source/texk/web2c/luatexdir/ChangeLog index cdb91b74747..5fe08dc0c19 100644 --- a/Build/source/texk/web2c/luatexdir/ChangeLog +++ b/Build/source/texk/web2c/luatexdir/ChangeLog @@ -1,3 +1,8 @@ +2014-04-10 Taco Hoekwater <taco@luatex.org> + + * luatex.c: hardwire the compilation date, preventing the + luatex binary from constantly changing after recompilation + 2014-03-29 Peter Breitenlohner <peb@mppmu.mpg.de> * pdf/pdfgen.[hw]: Declare get_pdf_table_string() as @@ -8,7 +13,7 @@ Import LuaTeX 0.79.1 from LuaTeX repository (released) 2014-03-28 Taco Hoekwater <taco@luatex.org> - +. Import LuaTeX 0.79.0 from LuaTeX repository (released) 2014-03-15 Taco Hoekwater <taco@luatex.org> diff --git a/Build/source/texk/web2c/luatexdir/luatex.c b/Build/source/texk/web2c/luatexdir/luatex.c index 8b1bda83eec..fb655167849 100644 --- a/Build/source/texk/web2c/luatexdir/luatex.c +++ b/Build/source/texk/web2c/luatexdir/luatex.c @@ -24,7 +24,7 @@ static const char _svn_version[] = int luatex_svn = luatex_svn_revision; int luatex_version = 79; /* \.{\\luatexversion} */ int luatex_revision = '1'; /* \.{\\luatexrevision} */ -int luatex_date_info = -extra_version_info; /* the compile date is negated */ +int luatex_date_info = 2014040100; /* the compile date is now hardwired */ const char *luatex_version_string = "beta-0.79.1"; #ifdef LuajitTeX const char *engine_name = "luajittex"; /* the name of this engine */ |