summaryrefslogtreecommitdiff
path: root/Build/source/texk/lcdf-typetools/config.h.in
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-22 12:09:38 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2010-02-22 12:09:38 +0000
commitb287d7f6a13823ea17e0bd415981d3a5953ca703 (patch)
treea420b28a35f7761f064d50bb610dbb2b46c71486 /Build/source/texk/lcdf-typetools/config.h.in
parent5fd6fd3479fcbbda52ebca7b5e80a5aaa1add69f (diff)
build system: various small fixes for mingw32 cross compilation
still incomplete git-svn-id: svn://tug.org/texlive/trunk@17141 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/lcdf-typetools/config.h.in')
-rw-r--r--Build/source/texk/lcdf-typetools/config.h.in9
1 files changed, 8 insertions, 1 deletions
diff --git a/Build/source/texk/lcdf-typetools/config.h.in b/Build/source/texk/lcdf-typetools/config.h.in
index 44131f541d8..fd076efe610 100644
--- a/Build/source/texk/lcdf-typetools/config.h.in
+++ b/Build/source/texk/lcdf-typetools/config.h.in
@@ -212,6 +212,9 @@
/* Define to 1 if you have the `waitpid' function. */
#undef HAVE_WAITPID
+/* Define to 1 if you have the <winsock2.h> header file. */
+#undef HAVE_WINSOCK2_H
+
/* Define to the sub-directory in which libtool stores uninstalled libraries.
*/
#undef LT_OBJDIR
@@ -291,7 +294,11 @@
/* Allow compilation on Windows (thanks, Fabrice Popineau). */
#ifdef WIN32
-# include <win32lib.h>
+# ifdef __MINGW32__
+# include <windows.h>
+# else
+# include <win32lib.h>
+# endif
#else
# define CDECL /* nothing */
#endif