summaryrefslogtreecommitdiff
path: root/lib/setup.h
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@broadpark.no>2006-08-29 16:26:41 +0000
committerGisle Vanem <gvanem@broadpark.no>2006-08-29 16:26:41 +0000
commit9691a78f6baa9ac38a37ff60ea58b3f7d4021781 (patch)
tree346397b03fd7203d2d2ef7b3a7cfb9a179e43b1b /lib/setup.h
parent7ff6b6fafdf3d8179b475a58f7b8757422ae69d8 (diff)
downloadcurl-9691a78f6baa9ac38a37ff60ea58b3f7d4021781.tar.gz
Support other MS-DOS compilers (MSDOS is a djgpp built-in define).
Diffstat (limited to 'lib/setup.h')
-rw-r--r--lib/setup.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/setup.h b/lib/setup.h
index 1e64c928a..b06214dfb 100644
--- a/lib/setup.h
+++ b/lib/setup.h
@@ -233,7 +233,7 @@ typedef unsigned char bool;
#else /* WIN32 */
-#ifdef DJGPP
+#ifdef MSDOS /* Watt-32 */
#include <sys/ioctl.h>
#define sclose(x) close_s(x)
#define select(n,r,w,x,t) select_s(n,r,w,x,t)
@@ -244,7 +244,7 @@ typedef unsigned char bool;
#undef word
#endif
-#else /* DJGPP */
+#else /* MSDOS */
#ifdef __BEOS__
#define sclose(x) closesocket(x)
@@ -254,7 +254,7 @@ typedef unsigned char bool;
#define HAVE_ALARM
-#endif /* DJGPP */
+#endif /* MSDOS */
#ifdef _AMIGASF
#undef HAVE_ALARM
@@ -267,7 +267,7 @@ typedef unsigned char bool;
#define DOT_CHAR "."
#endif
-#ifdef DJGPP
+#ifdef MSDOS
#undef DOT_CHAR
#define DOT_CHAR "_"
#endif