diff options
-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 | ||||
-rw-r--r-- | Master/texmf/web2c/texmf.cnf | 2 |
5 files changed, 14 insertions, 3 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?} diff --git a/Master/texmf/web2c/texmf.cnf b/Master/texmf/web2c/texmf.cnf index 1f91423e905..d34db470b3a 100644 --- a/Master/texmf/web2c/texmf.cnf +++ b/Master/texmf/web2c/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). |