aboutsummaryrefslogtreecommitdiff
path: root/make-bootstrap-jim
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2011-07-12 09:02:32 +1000
committerSteve Bennett <steveb@workware.net.au>2011-07-13 11:30:29 +1000
commite7e3cedcbde855a2f22ee9eb830b62c45b543836 (patch)
tree82d43014a41de21a813a0f7df3accd5ef26b6721 /make-bootstrap-jim
parent539f52a07c94d769e51d046d71903e4a2505edd7 (diff)
downloadjimtcl-e7e3cedcbde855a2f22ee9eb830b62c45b543836.zip
jimtcl-e7e3cedcbde855a2f22ee9eb830b62c45b543836.tar.gz
jimtcl-e7e3cedcbde855a2f22ee9eb830b62c45b543836.tar.bz2
Add tcl_platform(pathSeparator)
Tcl compatible. Also move jimsh initialisation script into initjimsh.tcl Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'make-bootstrap-jim')
-rwxr-xr-xmake-bootstrap-jim4
1 files changed, 3 insertions, 1 deletions
diff --git a/make-bootstrap-jim b/make-bootstrap-jim
index a7b81b2..2d8595f 100755
--- a/make-bootstrap-jim
+++ b/make-bootstrap-jim
@@ -40,7 +40,7 @@ EOF
}
cexts="aio readdir regexp file exec clock array"
-tclexts="bootstrap glob stdlib tclcompat"
+tclexts="bootstrap initjimsh glob stdlib tclcompat"
# Note ordering
allexts="bootstrap aio readdir glob regexp file exec clock array stdlib tclcompat"
@@ -62,11 +62,13 @@ cat <<EOF
#if defined(__MINGW32__)
#define TCL_PLATFORM_OS "mingw"
#define TCL_PLATFORM_PLATFORM "windows"
+#define TCL_PLATFORM_PATH_SEPARATOR ";"
#define HAVE_MKDIR_ONE_ARG
#define HAVE_SYSTEM
#else
#define TCL_PLATFORM_OS "unknown"
#define TCL_PLATFORM_PLATFORM "unix"
+#define TCL_PLATFORM_PATH_SEPARATOR ":"
#define HAVE_VFORK
#define HAVE_WAITPID
#endif