aboutsummaryrefslogtreecommitdiff
path: root/lib/config-win32.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-06-02 11:36:07 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-06-02 11:36:07 +0000
commit938a72b2dba019eb81d942fbe85cf401a7014d21 (patch)
tree5d6efc385f0fc586bdfb33d16774d8291b053dbd /lib/config-win32.h
parenta8827b1ed6150d8dc80348a58ed9f1e20a21739d (diff)
Gisle's adjustments to allow building with lcc-win32
Diffstat (limited to 'lib/config-win32.h')
-rw-r--r--lib/config-win32.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/config-win32.h b/lib/config-win32.h
index 7eca94e44..b1463741e 100644
--- a/lib/config-win32.h
+++ b/lib/config-win32.h
@@ -1,6 +1,9 @@
/* config.h. Generated automatically by configure. */
/* config.h.in. Generated automatically from configure.in by autoheader. */
+#ifndef __CONFIG_WIN32_H
+#define __CONFIG_WIN32_H
+
/* Define if on AIX 3.
System headers sometimes define this.
We just want to avoid a redefinition error message. */
@@ -223,9 +226,12 @@
/*************************************************
* This section is for compiler specific defines.*
*************************************************/
-#if defined(MINGW32) || defined(__WATCOMC__) /* Borland and MS don't have this */
+/* Borland and MS don't have this */
+#if defined(MINGW32) || defined(__WATCOMC__) || defined(__LCC__)
/* Define if you have the <unistd.h> header file. */
#define HAVE_UNISTD_H 1
#endif
+
+#endif