From 02994a2141ae4ff7154dba9d5833b8fb747e212a Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Wed, 24 Apr 1996 03:52:10 +0000 Subject: [PATCH] Add support for "gdbm" runtime load option. --- v7/src/runtime/ed-ffi.scm | 4 +++- v7/src/runtime/optiondb.scm | 21 +++++++++++---------- 2 files changed, 14 insertions(+), 11 deletions(-) diff --git a/v7/src/runtime/ed-ffi.scm b/v7/src/runtime/ed-ffi.scm index d6f0f9f21..b0ce5a616 100644 --- a/v7/src/runtime/ed-ffi.scm +++ b/v7/src/runtime/ed-ffi.scm @@ -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) diff --git a/v7/src/runtime/optiondb.scm b/v7/src/runtime/optiondb.scm index b79ed1008..4fc32d6e2 100644 --- a/v7/src/runtime/optiondb.scm +++ b/v7/src/runtime/optiondb.scm @@ -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 -- 2.25.1