summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lisp/gcl-cvs/files/gcl')
-rw-r--r--dev-lisp/gcl-cvs/files/gcl19
1 files changed, 19 insertions, 0 deletions
diff --git a/dev-lisp/gcl-cvs/files/gcl b/dev-lisp/gcl-cvs/files/gcl
new file mode 100644
index 000000000000..fad1367c4813
--- /dev/null
+++ b/dev-lisp/gcl-cvs/files/gcl
@@ -0,0 +1,19 @@
+#!/bin/sh
+
+SYS=@SYS@
+
+# Use the Common Lisp Controller image in preference to the standard
+# image.
+
+if [ -x $SYS/saved_ansi_gcl ] ; then
+ EXE=saved_ansi_gcl;
+else
+ EXE=saved_ansi_gcl.dist;
+fi
+
+exec $SYS/$EXE -dir $SYS/ -libdir @DIR@/ \
+ -eval '(setq si::*allow-gzipped-file* t)' \
+ -eval '(setq si::*tk-library* "/usr/lib/tk@TKVERS@")' \
+ "$@"
+
+# other options: -load /tmp/foo.o -load jo.lsp -eval "(joe 3)"