summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/win32/ChangeLog
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-09 08:04:20 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2011-08-09 08:04:20 +0000
commit2e4d12f4ceeaf451fa4ff0666a4c50b33f1826b2 (patch)
tree82985be2f5edd0565f5cea5983320666fff937e7 /Build/source/texk/kpathsea/win32/ChangeLog
parent1913b736d7e8d17206f1afa59cae982b6639fd2a (diff)
WIN32: more C program replacements for Unix shell scripts (from Akira's W32TeX)
git-svn-id: svn://tug.org/texlive/trunk@23469 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/win32/ChangeLog')
-rw-r--r--Build/source/texk/kpathsea/win32/ChangeLog20
1 files changed, 20 insertions, 0 deletions
diff --git a/Build/source/texk/kpathsea/win32/ChangeLog b/Build/source/texk/kpathsea/win32/ChangeLog
new file mode 100644
index 00000000000..6fc667428c5
--- /dev/null
+++ b/Build/source/texk/kpathsea/win32/ChangeLog
@@ -0,0 +1,20 @@
+2011-08-09 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * getdestdir.c, mktexmf.c, mktexpk.c, mktextfm.c, mktexupd.c,
+ mktexupdmain.c: New files from Akira's W32TeX.
+
+ * getdestdir.c (getdestdir): Replace kstrrchr() by strrchr().
+
+ * mktexmf.c (main), mktexpk.c (main), mktextfm.c (main),
+ mktexupdmain.c (main): Drop use of getlongname() for 8+3 names.
+
+ * mktexpk.c (main): Replace win32_popen() and win32_pclose() by
+ popen() and pclose().
+
+ * getdestdir.h, mktexupd.h: New headers with function prototypes.
+
+ * *.c: Drop extern declarations and #include these headers.
+ Declare functions as static. Drop unused variables.
+ Add parentheses around assignment used as truth value.
+ Add 'return 0' at end of non-void function. Constify strings.
+ * getdestdir.c (getdestdir): Initialize `Num' to avoid warning.