aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorantirez <antirez>2005-04-02 10:14:23 +0000
committerantirez <antirez>2005-04-02 10:14:23 +0000
commitbd9393e8e256e76f5976df479ba50cd00e0f777f (patch)
treee14c30a487d615c2c312580a7ab2450b9e607401 /README
parent49e34e447b54aad20aac86b17c38b35ca7b1203a (diff)
downloadjimtcl-bd9393e8e256e76f5976df479ba50cd00e0f777f.zip
jimtcl-bd9393e8e256e76f5976df479ba50cd00e0f777f.tar.gz
jimtcl-bd9393e8e256e76f5976df479ba50cd00e0f777f.tar.bz2
minor docs update
Diffstat (limited to 'README')
-rw-r--r--README10
1 files changed, 7 insertions, 3 deletions
diff --git a/README b/README
index e907c4f..77f41a3 100644
--- a/README
+++ b/README
@@ -130,10 +130,14 @@ For instructions about how to compile extensions just try 'make'
and see the available options. Check also the next section of this file.
--------------------------------------------------------------------------------
-HOW TO COMPILE WITHOUT DYNAMIC LIBRARY SUPPORT ([load] command)
+HOW TO COMPILE IN SYSTEMS WITH JUST ANSI-C SUPPORT
--------------------------------------------------------------------------------
-Edit jim.c before to complile and uncomment the JIM_DYNLIB define.
+Try:
+
+ make LIBS="" DEFS="-DJIM_ANSIC" jim
+
+This should compile Jim almost everywhere there is a decent ANSI-C compiler.
--------------------------------------------------------------------------------
EXTENSIONS
@@ -151,7 +155,7 @@ This is the start of a library that should export to Jim useful bits of the
WIN32 API. Currently there is just one function that is used to call windows
applications. For example run jim and try the extension with:
- load jim-win32.dll
+ package require win32
win32.shellexecute open notepad
You should see a notepad application running.