aboutsummaryrefslogtreecommitdiff
path: root/jim-posix.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-03-03 15:43:34 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:47 +1000
commit5b72fc672cece4e426817a124e364b76da6f9704 (patch)
tree1e0236ba5e547cbda1278351f119f27bbaa12783 /jim-posix.c
parent52b1ccb6859a2029e5b5a6d885e26a2a757ba0b1 (diff)
downloadjimtcl-5b72fc672cece4e426817a124e364b76da6f9704.zip
jimtcl-5b72fc672cece4e426817a124e364b76da6f9704.tar.gz
jimtcl-5b72fc672cece4e426817a124e364b76da6f9704.tar.bz2
Fix some build problems and add lost features
Add some missing files needed for autoconf Make jim build standalone and without host jimsh Use (FILE *) for eventloop file handle Don't expect to support dynlib if no mmu Re-add nvp and win32 support (untested) Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-posix.c')
-rw-r--r--jim-posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jim-posix.c b/jim-posix.c
index 7db78d4..df8ed48 100644
--- a/jim-posix.c
+++ b/jim-posix.c
@@ -39,7 +39,7 @@ static void Jim_PosixSetError(Jim_Interp *interp)
static int Jim_PosixForkCommand(Jim_Interp *interp, int argc,
Jim_Obj *const *argv)
{
-#ifdef NO_FORK
+#ifdef JIM_NOFORK
Jim_SetResultString(interp, "Not supported", -1);
return JIM_ERR;
#else