diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-06-13 12:22:58 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2018-06-13 12:22:58 +0000 |
commit | ed0cfd35f4e6db01b6a3eb97c1500b58f6e9cd89 (patch) | |
tree | b6c7b6e2f2fe3a65d4d3aea32240056cebf5940f | |
parent | f6a44754b12559c5c7f813710aec7f42985b1682 (diff) |
output correct image file names (w32 only, T. Tanaka)
git-svn-id: svn://tug.org/texlive/trunk@48000 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/ChangeLog | 4 | ||||
-rw-r--r-- | Build/source/texk/web2c/pdftexdir/ptexlib.h | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/pdftexdir/ChangeLog b/Build/source/texk/web2c/pdftexdir/ChangeLog index 614e772c8f7..26cbdfdfbc5 100644 --- a/Build/source/texk/web2c/pdftexdir/ChangeLog +++ b/Build/source/texk/web2c/pdftexdir/ChangeLog @@ -1,3 +1,7 @@ +2018-06-13 TANAKA Takuji <ttk@t-lab.opal.ne.jp> + + * ptexlib.h: Output correct image file names (w32 only). + 2018-06-12 Akira Kakuto <kakuto@fuk.kindai.ac.jp> * pdftoepdf.cc: Free unused memory (w32 only). diff --git a/Build/source/texk/web2c/pdftexdir/ptexlib.h b/Build/source/texk/web2c/pdftexdir/ptexlib.h index c43c8728f9b..03feb672cc2 100644 --- a/Build/source/texk/web2c/pdftexdir/ptexlib.h +++ b/Build/source/texk/web2c/pdftexdir/ptexlib.h @@ -23,8 +23,12 @@ with this program. If not, see <http://www.gnu.org/licenses/>. #ifdef _WIN32 #undef fopen #undef xfopen +#undef fputs +#undef putc #define fopen fsyscp_fopen #define xfopen fsyscp_xfopen +#define fputs win32_fputs +#define putc win32_putc #endif /* WEB2C macros and prototypes */ |