diff options
author | Taco Hoekwater <taco@elvenkind.com> | 2014-04-10 08:16:06 +0000 |
---|---|---|
committer | Taco Hoekwater <taco@elvenkind.com> | 2014-04-10 08:16:06 +0000 |
commit | 08e9e8bd727b9dfda9a1d3587873d5a21498e66c (patch) | |
tree | 30d8556d2028269544772c508cf885fcdeafeeb9 /Build/source | |
parent | 38f6ebb9b4a7699421378d5c0b30f7f4e96e1c90 (diff) |
fixate the luatex compilation date
git-svn-id: svn://tug.org/texlive/trunk@33423 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-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 */ |