texlive[47677] Build/source/texk/web2c: Allow non-ascii file names in
commits+kakuto at tug.org
commits+kakuto at tug.org
Fri May 11 06:38:13 CEST 2018
Revision: 47677
http://tug.org/svn/texlive?view=revision&revision=47677
Author: kakuto
Date: 2018-05-11 06:38:12 +0200 (Fri, 11 May 2018)
Log Message:
-----------
Allow non-ascii file names in pdfTeX (w32 only)
Modified Paths:
--------------
trunk/Build/source/texk/web2c/lib/ChangeLog
trunk/Build/source/texk/web2c/lib/texmfmp.c
trunk/Build/source/texk/web2c/pdftexdir/ChangeLog
trunk/Build/source/texk/web2c/pdftexdir/ptexlib.h
trunk/Build/source/texk/web2c/synctexdir/ChangeLog
trunk/Build/source/texk/web2c/synctexdir/synctex.c
Modified: trunk/Build/source/texk/web2c/lib/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/lib/ChangeLog 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/lib/ChangeLog 2018-05-11 04:38:12 UTC (rev 47677)
@@ -1,3 +1,7 @@
+2018-05-11 Akira Kakuto <kakuto at fuk.kindai.ac.jp>
+
+ * texmfmp.c: Allow non-ascii file names for pdfTeX (w32 only).
+
2018-03-16 Akira Kakuto <kakuto at fuk.kindai.ac.jp>
* texmfmp.c: Remove support of short 8.3 names (w32 only).
Modified: trunk/Build/source/texk/web2c/lib/texmfmp.c
===================================================================
--- trunk/Build/source/texk/web2c/lib/texmfmp.c 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/lib/texmfmp.c 2018-05-11 04:38:12 UTC (rev 47677)
@@ -674,7 +674,7 @@
maininit (int ac, string *av)
{
string main_input_file;
-#if (IS_upTeX || defined(XeTeX)) && defined(WIN32)
+#if (IS_upTeX || defined(XeTeX) || defined(pdfTeX)) && defined(WIN32)
string enc;
#endif
/* Save to pass along to topenin. */
@@ -703,10 +703,10 @@
kpse_set_program_name (argv[0], NULL);
initkanji ();
#endif
-#if defined(XeTeX) && defined(WIN32)
+#if (defined(XeTeX) || defined(pdfTeX)) && defined(WIN32)
kpse_set_program_name (argv[0], NULL);
#endif
-#if (IS_upTeX || defined(XeTeX)) && defined(WIN32)
+#if (IS_upTeX || defined(XeTeX) || defined(pdfTeX)) && defined(WIN32)
enc = kpse_var_value("command_line_encoding");
get_command_line_args_utf8(enc, &argc, &argv);
#endif
@@ -714,7 +714,7 @@
/* If the user says --help or --version, we need to notice early. And
since we want the --ini option, have to do it before getting into
the web (which would read the base file, etc.). */
-#if (IS_upTeX || defined(XeTeX)) && defined(WIN32)
+#if (IS_upTeX || defined(XeTeX) || defined(pdfTeX)) && defined(WIN32)
parse_options (argc, argv);
#else
parse_options (ac, av);
@@ -738,7 +738,7 @@
/* Do this early so we can inspect kpse_invocation_name and
kpse_program_name below, and because we have to do this before
any path searching. */
-#if IS_pTeX || (defined(XeTeX) && defined(WIN32))
+#if IS_pTeX || ((defined(XeTeX) || defined(pdfTeX)) && defined(WIN32))
if (user_progname)
kpse_reset_program_name (user_progname);
#else
Modified: trunk/Build/source/texk/web2c/pdftexdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/pdftexdir/ChangeLog 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/pdftexdir/ChangeLog 2018-05-11 04:38:12 UTC (rev 47677)
@@ -1,3 +1,7 @@
+2018-05-11 Akira Kakuto <kakuto at fuk.kindai.ac.jp>
+
+ * ptexlib.h: Allow non-ascii file names in pdfTeX (w32 only).
+
2018-04-28 Akira Kakuto <kakuto at fuk.kindai.ac.jp>
* pdftoepdf-newpoppler.cc, pdftosrc-newpoppler.cc:
Modified: trunk/Build/source/texk/web2c/pdftexdir/ptexlib.h
===================================================================
--- trunk/Build/source/texk/web2c/pdftexdir/ptexlib.h 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/pdftexdir/ptexlib.h 2018-05-11 04:38:12 UTC (rev 47677)
@@ -20,6 +20,13 @@
#ifndef PDFTEXLIB
# define PDFTEXLIB
+#ifdef _WIN32
+#undef fopen
+#undef xfopen
+#define fopen fsyscp_fopen
+#define xfopen fsyscp_xfopen
+#endif
+
/* WEB2C macros and prototypes */
# if !defined(PDFTEXCOERCE) && !defined(PDFETEXCOERCE)
# ifdef pdfTeX
Modified: trunk/Build/source/texk/web2c/synctexdir/ChangeLog
===================================================================
--- trunk/Build/source/texk/web2c/synctexdir/ChangeLog 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/synctexdir/ChangeLog 2018-05-11 04:38:12 UTC (rev 47677)
@@ -1,3 +1,8 @@
+2018-05-11 Akira Kakuto <kakuto at fuk.kindai.ac.jp>
+
+ * synctex.c: Allow non-ascii file names also for pdfTeX
+ (w32 only).
+
2018-01-18 Karl Berry <karl at freefriends.org>
* man5/synctex.5: spacing, typos, per Debian.
Modified: trunk/Build/source/texk/web2c/synctexdir/synctex.c
===================================================================
--- trunk/Build/source/texk/web2c/synctexdir/synctex.c 2018-05-11 03:39:27 UTC (rev 47676)
+++ trunk/Build/source/texk/web2c/synctexdir/synctex.c 2018-05-11 04:38:12 UTC (rev 47677)
@@ -292,7 +292,7 @@
# define SYNCTEX_OFFSET_IS_PDF 0
# endif
-#if defined(_WIN32) && (defined(upTeX) || defined(eupTeX) || defined(XeTeX))
+#if defined(_WIN32) && (defined(pdfTeX) || defined(upTeX) || defined(eupTeX) || defined(XeTeX))
#define W32UPTEXSYNCTEX 1
#include <wchar.h>
static char *chgto_oem(char *src);
More information about the tex-live-commits
mailing list