#| -*-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,
(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.")))
\f
(define (create-bdb env flags)
(guarantee-bdb-available)
#| -*-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,
((%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
((%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))))
#| -*-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,
(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 ()
#| -*-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,
(define (guarantee-pgsql-available)
(if (not (pgsql-available?))
- (error "No PostgreSQL support in this sytem.")))
+ (error "This Scheme system was built without PostgreSQL support.")))
\f
(define condition-type:pgsql-error
(make-condition-type 'PGSQL-ERROR condition-type:error '()