From: Chris Hanson Date: Tue, 11 Mar 2008 04:00:52 +0000 (+0000) Subject: Reword missing-support error message to clarify its meaning. X-Git-Tag: 20090517-FFI~303 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=df422e805c3746c8292d57065e96f85cdf03f9d4;p=mit-scheme.git Reword missing-support error message to clarify its meaning. --- diff --git a/v7/src/runtime/berkeley-db.scm b/v7/src/runtime/berkeley-db.scm index d4b005284..f75cab9c5 100644 --- a/v7/src/runtime/berkeley-db.scm +++ b/v7/src/runtime/berkeley-db.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: berkeley-db.scm,v 1.8 2008/02/14 03:34:07 cph Exp $ +$Id: berkeley-db.scm,v 1.9 2008/03/11 04:00:30 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -210,7 +210,7 @@ USA. (define (guarantee-bdb-available) (if (not (bdb-available?)) - (error "No Berkeley DB support in this sytem."))) + (error "This Scheme system was built without Berkeley DB support."))) (define (create-bdb env flags) (guarantee-bdb-available) diff --git a/v7/src/runtime/crypto.scm b/v7/src/runtime/crypto.scm index 67f9634b7..1820038be 100644 --- a/v7/src/runtime/crypto.scm +++ b/v7/src/runtime/crypto.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: crypto.scm,v 14.21 2008/01/30 20:02:29 cph Exp $ +$Id: crypto.scm,v 14.22 2008/03/11 03:59:34 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -302,7 +302,7 @@ USA. ((%md5-available?) (%md5-file filename)) (else - (error "No MD5 support available.")))) + (error "This Scheme system was built without MD5 support.")))) (define (%md5-file filename) (call-with-binary-input-file filename @@ -332,7 +332,7 @@ USA. ((%md5-available?) (%md5-substring string start end)) (else - (error "No MD5 support available.")))) + (error "This Scheme system was built without MD5 support.")))) (define (%md5-substring string start end) (let ((context ((ucode-primitive md5-init 0)))) diff --git a/v7/src/runtime/gdbm.scm b/v7/src/runtime/gdbm.scm index b63e0c7f7..a1fd683d1 100644 --- a/v7/src/runtime/gdbm.scm +++ b/v7/src/runtime/gdbm.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: gdbm.scm,v 1.11 2008/01/30 20:02:30 cph Exp $ +$Id: gdbm.scm,v 1.12 2008/03/11 04:00:52 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -57,7 +57,7 @@ USA. (define (gdbm-open filename block-size flags mode) (if (not (gdbm-available?)) - (error "No gdbm support in this sytem.")) + (error "This Scheme system was built without gdbm support.")) (let ((filename (->namestring (merge-pathnames filename)))) (without-interrupts (lambda () diff --git a/v7/src/runtime/pgsql.scm b/v7/src/runtime/pgsql.scm index c92c00e1e..d707e5145 100644 --- a/v7/src/runtime/pgsql.scm +++ b/v7/src/runtime/pgsql.scm @@ -1,6 +1,6 @@ #| -*-Scheme-*- -$Id: pgsql.scm,v 1.15 2008/02/14 03:34:09 cph Exp $ +$Id: pgsql.scm,v 1.16 2008/03/11 03:57:45 cph Exp $ Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, @@ -167,7 +167,7 @@ USA. (define (guarantee-pgsql-available) (if (not (pgsql-available?)) - (error "No PostgreSQL support in this sytem."))) + (error "This Scheme system was built without PostgreSQL support."))) (define condition-type:pgsql-error (make-condition-type 'PGSQL-ERROR condition-type:error '()