summaryrefslogtreecommitdiff
path: root/TSRM
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2001-11-03 13:33:21 +0000
committerAndi Gutmans <andi@php.net>2001-11-03 13:33:21 +0000
commitde64d45439897dd8e8e73b944e2e816bc136876b (patch)
tree7ad3c03912335526f743e4e7fd61f8f77daf5ed3 /TSRM
parenta67459f581421e7fe8bcca373832f155bbe9931e (diff)
downloadphp-git-de64d45439897dd8e8e73b944e2e816bc136876b.tar.gz
- RISC OS patches by Alex Waugh
Diffstat (limited to 'TSRM')
-rw-r--r--TSRM/tsrm_virtual_cwd.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.h b/TSRM/tsrm_virtual_cwd.h
index dbc1038ee7..e50c2ba1ca 100644
--- a/TSRM/tsrm_virtual_cwd.h
+++ b/TSRM/tsrm_virtual_cwd.h
@@ -62,7 +62,13 @@ typedef unsigned short mode_t;
#endif
#define DEFAULT_SLASH '/'
-#define DEFAULT_DIR_SEPARATOR ':'
+
+#ifdef __riscos__
+#define DEFAULT_DIR_SEPARATOR ';'
+#else
+#define DEFAULT_DIR_SEPARATOR ':'
+#endif
+
#define IS_SLASH(c) ((c) == '/')
#endif