>>>> "vin" == Vin Shelton <acs(a)xemacs.org>
writes:
vin> /home/acs/cvsroot/XEmacs-21.0/xemacs/configure:
/home/acs/cvsroot/XEmacs-21.0/xemacs/configure: line 10970: ` XE_DIE("Required
DBM support cannot be provided.")'
Looks like the definition of XE_DIE didn't get incorporated into the
21.0 configure.in.
Try this:
Add the definition of XE_DIE from the 21.2 configure.in into your
configure.in. Then run autoconf. Rerun configure.
Here's the completely untested patch (for 21.0 ONLY!):
Index: configure.in
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/configure.in,v
retrieving revision 1.122
diff -u -r1.122 configure.in
--- configure.in 1998/12/29 17:09:26 1.122
+++ configure.in 1998/12/30 08:40:47
@@ -229,6 +229,9 @@
[[$2]="[$1] $[$2]" && dnl
if test "$extra_verbose" = "yes"; then echo " Prepending
\"[$1]\" to \$[$2]"; fi])
+dnl XE_DIE(message)
+define([XE_DIE], [{ echo "Error:" $1 >&2; exit 1; }])
+
dnl Initialize some variables set by options.
dnl The variables have the same names as the options, with
dnl XE_DIE(message)
define([XE_DIE], [{ echo "Error:" $1 >&2; exit 1; }])