Add support for "gdbm" runtime load option.
authorChris Hanson <org/chris-hanson/cph>
Wed, 24 Apr 1996 03:52:10 +0000 (03:52 +0000)
committerChris Hanson <org/chris-hanson/cph>
Wed, 24 Apr 1996 03:52:10 +0000 (03:52 +0000)
v7/src/runtime/ed-ffi.scm
v7/src/runtime/optiondb.scm

index d6f0f9f21dd2005aa5fcafe4a13c7e439636dd9b..b0ce5a61665934275e05b9d48b38b95eb3f5bd2b 100644 (file)
@@ -1,6 +1,6 @@
 #| -*- Scheme -*-
 
-$Id: ed-ffi.scm,v 1.14 1995/10/28 02:57:38 cph Exp $
+$Id: ed-ffi.scm,v 1.15 1996/04/24 03:52:10 cph Exp $
 
 Copyright (c) 1988-95 Massachusetts Institute of Technology
 
@@ -112,6 +112,8 @@ MIT in each case. |#
                syntax-table/system-internal)
     ("gdatab"  (runtime global-database)
                syntax-table/system-internal)
+    ("gdbm"    (runtime gdbm)
+               syntax-table/system-internal)
     ("genio"   (runtime generic-i/o-port)
                syntax-table/system-internal)
     ("gensym"  (runtime gensym)
index b79ed100805a73b7a0dbeb5cb6cf0d3f19d3e099..4fc32d6e25f4b35a66c27428877c9a82bf03dda0 100644 (file)
@@ -1,8 +1,8 @@
 #| -*-Scheme-*-
 
-$Id: optiondb.scm,v 1.3 1995/05/03 07:34:40 cph Exp $
+$Id: optiondb.scm,v 1.4 1996/04/24 03:51:54 cph Exp $
 
-Copyright (c) 1994 Massachusetts Institute of Technology
+Copyright (c) 1994-96 Massachusetts Institute of Technology
 
 This material was developed by the Scheme project at the Massachusetts
 Institute of Technology, Department of Electrical Engineering and
@@ -71,14 +71,15 @@ MIT in each case. |#
 (for-each
  (lambda (spec)
    (define-load-option (car spec) (apply standard-option-loader (cdr spec))))
- '((FORMAT      (RUNTIME FORMAT)     (INITIALIZE-PACKAGE!) "format")
-   (COMPRESS    (RUNTIME COMPRESS)   #F                    "cpress")
-   (HASH-TABLE  (RUNTIME HASH-TABLE) (INITIALIZE-PACKAGE!) "hashtb")
-   (RB-TREE     (RUNTIME RB-TREE)    #F                    "rbtree")
-   (WT-TREE     (RUNTIME WT-TREE)    #F                    "wttree")
-   (SUBPROCESS  (RUNTIME SUBPROCESS) (INITIALIZE-PACKAGE!) "process")
-   (STEPPER     (RUNTIME STEPPER)    #F                    "ystep")
-   (ORDERED-VECTOR (RUNTIME ORDERED-VECTOR) #F "ordvec")
+ '((COMPRESS   (RUNTIME COMPRESS)      #F                      "cpress")
+   (FORMAT     (RUNTIME FORMAT)        (INITIALIZE-PACKAGE!)   "format")
+   (GDBM       (RUNTIME GDBM)          (INITIALIZE-PACKAGE!)   "gdbm")
+   (HASH-TABLE (RUNTIME HASH-TABLE)    (INITIALIZE-PACKAGE!)   "hashtb")
+   (ORDERED-VECTOR (RUNTIME ORDERED-VECTOR) #F                 "ordvec")
+   (RB-TREE    (RUNTIME RB-TREE)       #F                      "rbtree")
+   (STEPPER    (RUNTIME STEPPER)       #F                      "ystep")
+   (SUBPROCESS (RUNTIME SUBPROCESS)    (INITIALIZE-PACKAGE!)   "process")
+   (WT-TREE    (RUNTIME WT-TREE)       #F                      "wttree")
    ))
 
 (define-load-option 'DOSPROCESS