diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-24 00:37:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-24 00:37:52 +0000 |
commit | 38e4ed91e3d7702e75ceef0b7368c56f1f76a243 (patch) | |
tree | 4fc050889edde5a105225a3964515378685c6b7d /Build/source | |
parent | 0c34d999b2168a461cb1e570783c1a114538b649 (diff) |
increase sup_font_mem_size per Pander request, 22 May 2010 14:33:11
git-svn-id: svn://tug.org/texlive/trunk@18443 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source')
-rw-r--r-- | Build/source/texk/kpathsea/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/kpathsea/texmf.cnf | 2 | ||||
-rw-r--r-- | Build/source/texk/web2c/ChangeLog | 7 | ||||
-rw-r--r-- | Build/source/texk/web2c/tex.ch | 2 |
4 files changed, 13 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog index c6b706394ca..fc7bb159b4b 100644 --- a/Build/source/texk/kpathsea/ChangeLog +++ b/Build/source/texk/kpathsea/ChangeLog @@ -1,3 +1,7 @@ +2010-05-24 Karl Berry <karl@tug.org> + + * texmf.cnf (font_mem_size): doc fix. + 2010-05-21 Karl Berry <karl@tug.org> * mktexpk: help msg, mention map files in error. diff --git a/Build/source/texk/kpathsea/texmf.cnf b/Build/source/texk/kpathsea/texmf.cnf index 1f91423e905..d34db470b3a 100644 --- a/Build/source/texk/kpathsea/texmf.cnf +++ b/Build/source/texk/kpathsea/texmf.cnf @@ -634,7 +634,7 @@ extra_mem_top.context = 2000000 extra_mem_bot.context = 4000000 % Words of font info for TeX (total size of all TFM files, approximately). -% Must be >= 20000 and <= 4000000 (without tex.ch changes). +% Must be >= 20000 and <= 147483647 (without tex.ch changes). font_mem_size = 3000000 % Total number of fonts. Must be >= 50 and <= 9000 (without tex.ch changes). diff --git a/Build/source/texk/web2c/ChangeLog b/Build/source/texk/web2c/ChangeLog index 2b9e3da7f3d..ee98bb0d6b9 100644 --- a/Build/source/texk/web2c/ChangeLog +++ b/Build/source/texk/web2c/ChangeLog @@ -1,3 +1,10 @@ +2010-05-24 Karl Berry <karl@tug.org> + + * tex.ch (sup_font_mem_size): increase from 4,000,000 + to 147,483,647 (the last nine digits of 2^31 - 1). It seems to me + this is merely an integer, so 2^31-1 itself should be safe, i.e., + a 2 could be prepended, but I just didn't want to go that far. + 2010-05-21 Peter Breitenlohner <peb@mppmu.mpg.de> * Makefile.am: Fix the lib/libp.a rebuild rule. diff --git a/Build/source/texk/web2c/tex.ch b/Build/source/texk/web2c/tex.ch index ab2b915e9d4..14b7dc1f909 100644 --- a/Build/source/texk/web2c/tex.ch +++ b/Build/source/texk/web2c/tex.ch @@ -268,7 +268,7 @@ versions of the program. @!sup_dvi_buf_size = 65536; @!inf_font_mem_size = 20000; -@!sup_font_mem_size = 4000000; +@!sup_font_mem_size = 147483647; {|integer|-limited, so 2 could be prepended?} @!sup_font_max = max_font_max; @!inf_font_max = 50; {could be smaller, but why?} |