diff options
author | Karl Berry <karl@freefriends.org> | 2021-02-24 18:27:49 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-02-24 18:27:49 +0000 |
commit | a360890a6c2a4befab6b48084d0731ad09c46631 (patch) | |
tree | a4ba78e23d40a984e871a8f53718d60b965c98af /Master/texmf-dist/web2c | |
parent | 5f6231423ff11a042181be707faa0db6012b8e35 (diff) |
2021 pretest setup
git-svn-id: svn://tug.org/texlive/trunk@57875 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/web2c')
-rw-r--r-- | Master/texmf-dist/web2c/texmf.cnf | 28 | ||||
-rw-r--r-- | Master/texmf-dist/web2c/texmfcnf.lua | 4 |
2 files changed, 21 insertions, 11 deletions
diff --git a/Master/texmf-dist/web2c/texmf.cnf b/Master/texmf-dist/web2c/texmf.cnf index 631a32e3ad9..a58b3e6c990 100644 --- a/Master/texmf-dist/web2c/texmf.cnf +++ b/Master/texmf-dist/web2c/texmf.cnf @@ -4,8 +4,8 @@ % If you modify this original file, YOUR CHANGES WILL BE LOST when it is % updated. Instead, put your changes -- and only your changes, not an % entire copy! -- in ../../texmf.cnf. That is, if this file is -% installed in /some/path/to/texlive/2020/texmf-dist/web2c/texmf.cnf, -% add your custom settings to /some/path/to/texlive/2020/texmf.cnf. +% installed in /some/path/to/texlive/2021/texmf-dist/web2c/texmf.cnf, +% put your custom settings in /some/path/to/texlive/2021/texmf.cnf. % (Below, we use YYYY in place of the specific year.) % % What follows is a super-summary of what this .cnf file can @@ -84,10 +84,10 @@ TEXMFSYSCONFIG = $TEXMFROOT/texmf-config TEXMFHOME = ~/texmf % TEXMFVAR, where texconfig/updmap/fmtutil store cached runtime data. -TEXMFVAR = ~/.texlive2020/texmf-var +TEXMFVAR = ~/.texlive2021/texmf-var % TEXMFCONFIG, where texconfig/updmap/fmtutil store configuration data. -TEXMFCONFIG = ~/.texlive2020/texmf-config +TEXMFCONFIG = ~/.texlive2021/texmf-config % This is the value manipulated by tlmgr's auxtrees subcommand in the % root texmf.cnf. Kpathsea warns about a literally empty string for a @@ -764,9 +764,7 @@ texmf_casefold_search = 1 % Part 3: Array and other sizes for TeX, Metafont, etc. % % If you want to change some of these sizes only for a certain TeX -% variant, the usual dot notation works, e.g., -% main_memory.hugetex = 20000000 -% +% variant, the usual dot notation works, as shown below for ConTeXt. % If a change here appears to be ignored, try redumping the format file. % Memory. Must be less than 8,000,000 total. @@ -809,8 +807,10 @@ pool_size = 6250000 string_vacancies = 90000 % Maximum number of strings. max_strings = 500000 -% min pool space left after loading .fmt +% Min pool space left after loading .fmt. pool_free = 47500 +% Ensure at least this many strings are free after loading .fmt. +strings_free = 100 % Buffer size. TeX uses the buffer to contain input lines, but macro % expansion works by writing material into the buffer and reparsing the @@ -825,8 +825,9 @@ buf_size = 200000 % trie_size = 1000000 -hyph_size = 8191 % prime number of hyphenation exceptions, >610, <32767. +hyph_size = 8191 % prime number of hyphenation exceptions, >610, <65535 % http://primes.utm.edu/curios/page.php/8191.html + % dynamically increased as necessary, so not important. nest_size = 500 % simultaneous semantic levels (e.g., groups) max_in_open = 15 % simultaneous input files and error insertions, % also applies to MetaPost @@ -834,11 +835,20 @@ param_size = 10000 % simultaneous macro parameters, also applies to MP save_size = 200000 % for saving values outside current group stack_size = 5000 % simultaneous input sources +% Limit on recursive expansion calls so TeX has a chance to quit nicely +% before stack space runs out. The default is 10000. Normally there is no +% reason to change it. The web2c manual has a bit more about this. +%expand_depth = 10000 + % These are Omega-specific. ocp_buf_size = 500000 % character buffers for ocp filters. ocp_stack_size = 10000 % stacks for ocp computations. ocp_list_size = 1000 % control for multiple ocps. +% For pdftex and luatex: default resolution for bitmaps; +% commonly set via \pdfpkresolution when needed to be changed. +%pk_dpi = 72 + % These work best if they are the same as the I/O buffer size, but it % doesn't matter much. Must be a multiple of 8. dvi_buf_size = 16384 % TeX diff --git a/Master/texmf-dist/web2c/texmfcnf.lua b/Master/texmf-dist/web2c/texmfcnf.lua index 9382ffeb137..c6cc5b959d8 100644 --- a/Master/texmf-dist/web2c/texmfcnf.lua +++ b/Master/texmf-dist/web2c/texmfcnf.lua @@ -45,13 +45,13 @@ return { -- only used for FONTCONFIG_PATH & TEXMFCACHE in TeX Live TEXMFSYSVAR = "selfautoparent:texmf-var", - TEXMFVAR = "home:.texlive2020/texmf-var", + TEXMFVAR = "home:.texlive2021/texmf-var", -- We have only one cache path but there can be more. The first writable one -- will be chosen but there can be more readable paths. TEXMFCACHE = "$TEXMFSYSVAR;$TEXMFVAR", - TEXMFCONFIG = "home:.texlive2020/texmf-config", + TEXMFCONFIG = "home:.texlive2021/texmf-config", -- I don't like this texmf under home and texmf-home would make more -- sense. One never knows what installers put under texmf anywhere and |