summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2000-03-19 19:55:02 +0000
committerDaniel Stenberg <daniel@haxx.se>2000-03-19 19:55:02 +0000
commitf9a839d906eed1216ed84e495070f5e3988a7806 (patch)
treef97cf6600bd1dd786e195165e9da18d084b318ba
parentff3fd842d8338feb5277a0450991c882dd4d84b2 (diff)
downloadcurl-f9a839d906eed1216ed84e495070f5e3988a7806.tar.gz
Marco G. Salvagno's OS/2 changes
-rw-r--r--src/main.c7
-rw-r--r--src/setup.h10
2 files changed, 17 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index a6bf56bb6..3e1918be1 100644
--- a/src/main.c
+++ b/src/main.c
@@ -879,6 +879,13 @@ int main(int argc, char *argv[])
int i;
outs.stream = stdout;
+#ifdef __EMX__
+ /* 20000318 mgs
+ * we call _fsetmode to fix the problem with fwrite converting newline
+ * characters (you get mangled text files, and corrupted binary files when
+ * you download to stdout and redirect it to a file). */
+ _fsetmode(stdout, "b");
+#endif
memset(&config, 0, sizeof(struct Configurable));
diff --git a/src/setup.h b/src/setup.h
index 78103f9ce..55ea7074f 100644
--- a/src/setup.h
+++ b/src/setup.h
@@ -82,10 +82,20 @@ int fileno( FILE *stream);
#define DIR_CHAR "\\"
#define DOT_CHAR "_"
#else
+#ifdef __EMX__
+/* 20000318 mgs
+ * OS/2 supports leading dots in filenames if the volume is formatted
+ * with JFS or HPFS. */
+#define PATH_CHAR ";"
+#define DIR_CHAR "\\"
+#define DOT_CHAR "."
+#else
+
#define PATH_CHAR ":"
#define DIR_CHAR "/"
#define DOT_CHAR "."
#endif
+#endif
#endif /* __SETUP_H */