beta-0.89.2
[luatex.git] / source / texk / kpathsea / win32 / ChangeLog
blob4bce31540dce1c718be24c4c676ffb8ec06388da
1 2015-06-20  Peter Breitenlohner  <peb@mppmu.mpg.de>
3         * dirutil.h, getdestdir.h, mktexupd.h (removed): Merged ...
4         * mktex.h (new): ... into this and define normalize().
5         * mkpaths.c (new): Define mkpaths() to handle TEXMFDBS.
6         * getdestdir.c, mktexpk.c, mktexupdmain.c: Use normalize().
7         * mktexlsr.c: Use normalize() and mkpaths().
8         * mktexupd.c: Use mkpaths().
10 2015-06-18  Peter Breitenlohner  <peb@mppmu.mpg.de>
12         * Makefile.am (AM_CPPFLAGS): WEB2C_KPSE_VERSION => WEB2CVERSION.
13         * dirutil.[ch], getdestdir.h, mktexupd.h: Add W32TeX Copyright.
14         * getdestdir.c, mktexfmt.c, mktexlsr.c, mktexmf.c, mktexupd.c,
15         mktexupdmain.c: Sync with W32TeX.
16         * mktexpk.c, mktextfm.c: Sync with W32TeX.
17         Use KPSEVERSION and WEB2CVERSION instead of WEB2C_KPSE_VERSION.
19 2015-04-12  Peter Breitenlohner  <peb@mppmu.mpg.de>
21         * Makefile.am (bin_PROGRAMS): Drop fmtutil, now a perl script.
22         * fmtutil.c: Removed.
24 2014-07-15  Peter Breitenlohner  <peb@mppmu.mpg.de>
26         * mktexfmt.c, mktexpk.c, mktextfm.c: Replace the deprecated
27         spawnvp() by _spawnvp(), they differ for 64-bit MinGW.
29 2012-12-08  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
31         * getdestdir.c: Correct return value of getdestdir().
33 2012-10-04  Peter Breitenlohner  <peb@mppmu.mpg.de>
35         * dirutil.c: Use stat in int is_dir ().
36         * Makefile.am: Avoid use of deprecated INCLUDES.
38 2012-08-08  Peter Breitenlohner  <peb@mppmu.mpg.de>
40         * Makefile.am: Install texhash.exe as copy of mktexlsr.exe.
42 2012-08-03  Peter Breitenlohner  <peb@mppmu.mpg.de>
44         * mktexfmt.c, mktexpk.c, mktextfm.c: Replace P_WAIT by _P_WAIT.
46 2012-04-09  Peter Breitenlohner  <peb@mppmu.mpg.de>
48         * Makefile.am (AM_CPPFLAGS): Define WEB2C_KPSE_VERSION.
49         * mktexpk.c, mktextfm.c: Drop WINWEB2CVERSION, WINKPSEVERSION,
50         use WEB2C_KPSE_VERSION with versions from configure.
52 2011-08-29  Peter Breitenlohner  <peb@mppmu.mpg.de>
54         * fmtutil.c: Add parens around assignment used as truth value.
56 2011-08-11  Peter Breitenlohner  <peb@mppmu.mpg.de>
58         * fmtutil.c: Return zero or one (Errorcnt could be 256).
60 2011-08-10  Akira Kakuto  <kakuto@fuk.kindai.ac.jp>
62         * fmtutil.c: return a nonzero value if it fails to make a format.
64 2011-08-10  Peter Breitenlohner  <peb@mppmu.mpg.de>
66         * getdestdir.c, mktexmf.c, mktexpk.c, mktextfm.c, mktexupd.c,
67         mktexupdmain.c: No need to #include any standard headers, they
68         all come through <kpathsea/kpathsea.h>.
69         * getdestdir.c, mktexpk.c, mktextfm.c: Use IS_KANJI().
71         * dirutil.[ch]: New files extracted ...
72         * getdestdir.[ch]: ... from here.
74         * fmtutil.c, mktexfmt.c, mktexlsr.c: More new files from W32TeX.
75         Drop use of getlongname() for 8+3 names.  Constify strings.
76         No need to #include any standard headers.
77         Declare functions as static. Drop unused variables.
78         Add parentheses around assignment used as truth value.
80         * fmtutil.c: Declare the array index Exenum as unsigned char.
81         (is_dir, make_dir, make_dir_p): Removed, use dirutil.c.
83         * mktexlsr.c: For MinGW #include "dirutil.h" and use is_dir(),
84         for native WIN32 #include <kpathsea/dirent.h> and use d_isdir.
85         (search): No need to slashify name.  Remove return at end.
87 2011-08-09  Peter Breitenlohner  <peb@mppmu.mpg.de>
89         * getdestdir.c, mktexmf.c, mktexpk.c, mktextfm.c, mktexupd.c,
90         mktexupdmain.c: New files from Akira's W32TeX.
92         * getdestdir.c (getdestdir): Replace kstrrchr() by strrchr().
94         * mktexmf.c (main), mktexpk.c (main), mktextfm.c (main),
95         mktexupdmain.c (main): Drop use of getlongname() for 8+3 names.
97         * mktexpk.c (main): Replace win32_popen() and win32_pclose() by
98         popen() and pclose().
100         * getdestdir.h, mktexupd.h: New headers with function prototypes.
102         * *.c: Drop extern declarations and #include these headers.
103         Declare functions as static. Drop unused variables.
104         Add parentheses around assignment used as truth value.
105         Add 'return 0' at end of non-void function.  Constify strings.
106         * getdestdir.c (getdestdir): Initialize `Num' to avoid warning.