summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/lib
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2019-03-22 22:57:44 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2019-03-22 22:57:44 +0000
commit3c7015836174a57a5093d719c7bf0076079b173f (patch)
tree7351aa401117534bf7816ffd37f2d5f84a86b82a /Build/source/texk/web2c/lib
parentd6ab461f1c42ba7e0e40caecb9086fe88228d67d (diff)
Fix a bug in the case of --recorder option (w32 only)
git-svn-id: svn://tug.org/texlive/trunk@50539 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/lib')
-rw-r--r--Build/source/texk/web2c/lib/ChangeLog7
-rw-r--r--Build/source/texk/web2c/lib/texmfmp.c11
2 files changed, 13 insertions, 5 deletions
diff --git a/Build/source/texk/web2c/lib/ChangeLog b/Build/source/texk/web2c/lib/ChangeLog
index ca3bbb0c28e..9f913eb4bc2 100644
--- a/Build/source/texk/web2c/lib/ChangeLog
+++ b/Build/source/texk/web2c/lib/ChangeLog
@@ -1,3 +1,10 @@
+2019-03-23 Akira Kakuto <kakuto@w32tex.org>
+
+ * texmfmp.c: On windows, xetex and pdftex did not record
+ texmf.cnf in the case of --recorder because of special
+ initializations. Fix this bug. It is not needed to rebuild
+ in other platforms.
+
2019-01-01 Akira Kakuto <kakuto@fuk.kindai.ac.jp>
* printversion.c: Update copyright year.
diff --git a/Build/source/texk/web2c/lib/texmfmp.c b/Build/source/texk/web2c/lib/texmfmp.c
index c0606272b29..092e834b0c2 100644
--- a/Build/source/texk/web2c/lib/texmfmp.c
+++ b/Build/source/texk/web2c/lib/texmfmp.c
@@ -738,16 +738,17 @@ maininit (int ac, string *av)
parse_options (ac, av);
#endif
-#if IS_pTeX
- /* In pTeX and friends, texmf.cnf is not recorded in the case of --recorder,
- because parse_options() is executed after the start of kpathsea due to
- special initializations. Therefore we record texmf.cnf here. */
+#if IS_pTeX || ((defined(XeTeX) || defined(pdfTeX)) && defined(WIN32))
+ /* In pTeX and friends, or in WIN32, texmf.cnf is not recorded in
+ the case of --recorder, because parse_options() is executed
+ 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);
}
-#endif
+#endif /* IS_pTeX || (...) */
/* If -progname was not specified, default to the dump name. */
if (!user_progname)