aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--README10
-rw-r--r--doc/AIO-Extension.txt4
3 files changed, 14 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 9349588..f5adabf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-02 12:08 antirez
+
+ * ChangeLog, Makefile, jim-stdlib-1.0.tcl, jim.c: Added a very
+ immature start of a Jim standard library.
+
2005-04-02 11:09 antirez
* ChangeLog, Makefile: Changes to Makefile to reflect that now
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.
diff --git a/doc/AIO-Extension.txt b/doc/AIO-Extension.txt
index c705c92..9be8035 100644
--- a/doc/AIO-Extension.txt
+++ b/doc/AIO-Extension.txt
@@ -1,5 +1,5 @@
ANSI I/O extensiond documentation
-$Id: AIO-Extension.txt,v 1.3 2005/03/06 10:43:06 antirez Exp $
+$Id: AIO-Extension.txt,v 1.4 2005/04/02 10:14:23 antirez Exp $
Overview
~~~~~~~~
@@ -42,7 +42,7 @@ The [aio.open] command returns a file handle, that is a command name that
can be used to perform operations on the file. A real example:
Welcome to Jim version 0, Copyright (c) 2005 Salvatore Sanfilippo
- 0 jim> load jim-aio.so
+ 0 jim> package require aio
1.0
0 jim> set f [aio.open /etc/passwd]
aio.handle0