From dc1e58da45332c2645d39154571835d4fb79c456 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Mon, 27 Jun 2011 21:34:07 -0700 Subject: Fix support for 64-bit mingw - Check for mkdir with one arg at configure time - mingw can't really do select(), so support only time events in eventloop - Declare dlerror() to be compatible with mingw Signed-off-by: Steve Bennett --- make-bootstrap-jim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'make-bootstrap-jim') diff --git a/make-bootstrap-jim b/make-bootstrap-jim index 11f7a2f..4f492f8 100755 --- a/make-bootstrap-jim +++ b/make-bootstrap-jim @@ -48,7 +48,7 @@ allexts="bootstrap aio readdir glob regexp file exec clock array stdlib tclcompa echo "/* This is single source file, bootstrap version of Jim Tcl. See http://jim.berlios.de/ */" # define some core features -for i in _GNU_SOURCE JIM_TCL_COMPAT JIM_REFERENCES JIM_ANSIC HAVE_VFORK JIM_REGEXP HAVE_NO_AUTOCONF _JIMAUTOCONF_H; do +for i in _GNU_SOURCE JIM_TCL_COMPAT JIM_REFERENCES JIM_ANSIC JIM_REGEXP HAVE_NO_AUTOCONF _JIMAUTOCONF_H; do echo "#define $i" done echo '#define TCL_LIBRARY "."' @@ -59,8 +59,8 @@ done # Can we make a bootstrap jimsh work even on mingw32? cat <