diff options
-rw-r--r-- | Build/source/texk/web2c/lib/ChangeLog | 7 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/openclose.c | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/lib/texmfmp.c | 13 |
3 files changed, 19 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog index 9f913eb4bc2..5dd7cd63bc1 100644 --- a/Build/source/texk/web2c/lib/ChangeLog +++ b/Build/source/texk/web2c/lib/ChangeLog @@ -1,3 +1,10 @@ +2019-03-30 Akira Kakuto <kakuto@w32tex.org> + + * texmfmp.c: Improve to record texmf.cnf. (ptex and friends, + and w32 only). + * openclose.c: Remove "static" in order to use relevant + functions externally. (w32 only). + 2019-03-23 Akira Kakuto <kakuto@w32tex.org> * texmfmp.c: On windows, xetex and pdftex did not record diff --git a/Build/source/texk/web2c/lib/openclose.c b/Build/source/texk/web2c/lib/openclose.c index 945c732672f..63fa0393528 100644 --- a/Build/source/texk/web2c/lib/openclose.c +++ b/Build/source/texk/web2c/lib/openclose.c @@ -43,7 +43,7 @@ static int fsyscp_rename(char *s1, char *s2) return ret; } -static FILE *f_fsyscp_fopen(const char *filename, const char *mode) +FILE *f_fsyscp_fopen(const char *filename, const char *mode) { if(!file_system_codepage) return fopen(filename, mode); @@ -51,7 +51,7 @@ static FILE *f_fsyscp_fopen(const char *filename, const char *mode) return fsyscp_fopen(filename, mode); } -static FILE *f_fsyscp_xfopen(const char *filename, const char *mode) +FILE *f_fsyscp_xfopen(const char *filename, const char *mode) { if(!file_system_codepage) return xfopen(filename, mode); diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c index 092e834b0c2..64a7d31160b 100644 --- a/Build/source/texk/web2c/lib/texmfmp.c +++ b/Build/source/texk/web2c/lib/texmfmp.c @@ -744,9 +744,16 @@ maininit (int ac, string *av) after the start of kpathsea due to special initializations. Therefore we record texmf.cnf here. */ if (recorder_enabled) { - string p = kpse_find_file ("texmf.cnf", kpse_cnf_format, 0); - if (p) - recorder_record_input (p); + string *p = kpse_find_file_generic ("texmf.cnf", kpse_cnf_format, 0, 1); + if (p && *p) { + string *pp = p; + while (*p) { + recorder_record_input (*p); + free (*p); + p++; + } + free (pp); + } } #endif /* IS_pTeX || (...) */ |