sync with TL36978; fixed Copyright year; jump to 0.80.1 (again)
[luatex.git] / source / texk / kpathsea / win32 / ChangeLog
blobd0419ee6e9ee0e2ad74460a75c8bf90de35d6a8e
1 2015-04-12  Peter Breitenlohner  <peb@mppmu.mpg.de>
3         * Makefile.am (bin_PROGRAMS): Drop fmtutil, now a perl script.
4         * fmtutil.c: Removed.
6 2014-07-15  Peter Breitenlohner  <peb@mppmu.mpg.de>
8         * mktexfmt.c, mktexpk.c, mktextfm.c: Replace the deprecated
9         spawnvp() by _spawnvp(), they differ for 64-bit MinGW.
11 2012-12-08  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
13         * getdestdir.c: Correct return value of getdestdir().
15 2012-10-04  Peter Breitenlohner  <peb@mppmu.mpg.de>
17         * dirutil.c: Use stat in int is_dir ().
18         * Makefile.am: Avoid use of deprecated INCLUDES.
20 2012-08-08  Peter Breitenlohner  <peb@mppmu.mpg.de>
22         * Makefile.am: Install texhash.exe as copy of mktexlsr.exe.
24 2012-08-03  Peter Breitenlohner  <peb@mppmu.mpg.de>
26         * mktexfmt.c, mktexpk.c, mktextfm.c: Replace P_WAIT by _P_WAIT.
28 2012-04-09  Peter Breitenlohner  <peb@mppmu.mpg.de>
30         * Makefile.am (AM_CPPFLAGS): Define WEB2C_KPSE_VERSION.
31         * mktexpk.c, mktextfm.c: Drop WINWEB2CVERSION, WINKPSEVERSION,
32         use WEB2C_KPSE_VERSION with versions from configure.
34 2011-08-29  Peter Breitenlohner  <peb@mppmu.mpg.de>
36         * fmtutil.c: Add parens around assignment used as truth value.
38 2011-08-11  Peter Breitenlohner  <peb@mppmu.mpg.de>
40         * fmtutil.c: Return zero or one (Errorcnt could be 256).
42 2011-08-10  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
44         * fmtutil.c: return a nonzero value if it fails to make a format.
46 2011-08-10  Peter Breitenlohner  <peb@mppmu.mpg.de>
48         * getdestdir.c, mktexmf.c, mktexpk.c, mktextfm.c, mktexupd.c,
49         mktexupdmain.c: No need to #include any standard headers, they
50         all come through <kpathsea/kpathsea.h>.
51         * getdestdir.c, mktexpk.c, mktextfm.c: Use IS_KANJI().
53         * dirutil.[ch]: New files extracted ...
54         * getdestdir.[ch]: ... from here.
56         * fmtutil.c, mktexfmt.c, mktexlsr.c: More new files from W32TeX.
57         Drop use of getlongname() for 8+3 names.  Constify strings.
58         No need to #include any standard headers.
59         Declare functions as static. Drop unused variables.
60         Add parentheses around assignment used as truth value.
62         * fmtutil.c: Declare the array index Exenum as unsigned char.
63         (is_dir, make_dir, make_dir_p): Removed, use dirutil.c.
65         * mktexlsr.c: For MinGW #include "dirutil.h" and use is_dir(),
66         for native WIN32 #include <kpathsea/dirent.h> and use d_isdir.
67         (search): No need to slashify name.  Remove return at end.
69 2011-08-09  Peter Breitenlohner  <peb@mppmu.mpg.de>
71         * getdestdir.c, mktexmf.c, mktexpk.c, mktextfm.c, mktexupd.c,
72         mktexupdmain.c: New files from Akira's W32TeX.
74         * getdestdir.c (getdestdir): Replace kstrrchr() by strrchr().
76         * mktexmf.c (main), mktexpk.c (main), mktextfm.c (main),
77         mktexupdmain.c (main): Drop use of getlongname() for 8+3 names.
79         * mktexpk.c (main): Replace win32_popen() and win32_pclose() by
80         popen() and pclose().
82         * getdestdir.h, mktexupd.h: New headers with function prototypes.
84         * *.c: Drop extern declarations and #include these headers.
85         Declare functions as static. Drop unused variables.
86         Add parentheses around assignment used as truth value.
87         Add 'return 0' at end of non-void function.  Constify strings.
88         * getdestdir.c (getdestdir): Initialize `Num' to avoid warning.