summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-26 13:06:11 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-26 13:06:11 +0000
commitc3b610214e8dd43782606fe3f16eafc2c790648b (patch)
treed5f6d7a7ba4ba13fd30620370f24e7137872e597 /Build/source/texk/kpathsea
parentb0128c9b4c5f886ebf14ec5c6ecf8c6cd0fbbf1b (diff)
gsftopk patches from Akira for MinGW
git-svn-id: svn://tug.org/texlive/trunk@17216 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea')
-rw-r--r--Build/source/texk/kpathsea/ChangeLog5
-rw-r--r--Build/source/texk/kpathsea/mingw32.c4
-rw-r--r--Build/source/texk/kpathsea/mingw32.h1
3 files changed, 7 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/ChangeLog b/Build/source/texk/kpathsea/ChangeLog
index 57e131da8ca..6b91a4d9f70 100644
--- a/Build/source/texk/kpathsea/ChangeLog
+++ b/Build/source/texk/kpathsea/ChangeLog
@@ -1,3 +1,8 @@
+2010-02-26 Peter Breitenlohner <peb@mppmu.mpg.de>
+
+ * mingw32.c (dostounix_filename): Reactivate as extern KPSEDLL,
+ used for gsftopk.
+
2010-02-23 Peter Breitenlohner <peb@mppmu.mpg.de>
* dir.c (kpathsea_dir_p), tex-make.c (maketex): [WIN32]: Cast
diff --git a/Build/source/texk/kpathsea/mingw32.c b/Build/source/texk/kpathsea/mingw32.c
index b0e15e6a2a4..7d953de0f7a 100644
--- a/Build/source/texk/kpathsea/mingw32.c
+++ b/Build/source/texk/kpathsea/mingw32.c
@@ -206,13 +206,11 @@ normalize_filename (char *fp, char path_sep)
/* Destructively turn backslashes into slashes. */
-#if 0 /* unused */
-static void
+void
dostounix_filename (char *p)
{
normalize_filename (p, '/');
}
-#endif
/* Destructively turn slashes into backslashes. */
static void
diff --git a/Build/source/texk/kpathsea/mingw32.h b/Build/source/texk/kpathsea/mingw32.h
index 18ca5380513..c17927b1244 100644
--- a/Build/source/texk/kpathsea/mingw32.h
+++ b/Build/source/texk/kpathsea/mingw32.h
@@ -52,5 +52,6 @@ extern char *quote_args(char **);
extern KPSEDLL BOOL win32_get_long_filename (char *, char *, int);
extern KPSEDLL int win32_system(const char *, int);
+extern KPSEDLL void dostounix_filename (char *p);
#endif