summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2003-04-25 12:23:45 -0400
committerJarkko Hietaniemi <jhi@iki.fi>2003-04-25 19:48:31 +0000
commit93a2cd18e0620f7d49cbc853ffd1212b0ccb834a (patch)
tree16dc8a80f5e46c27340d939345ed2ca3739ca4ed /Configure
parent196fd07f98ca6f157437e588cd29e6575e123584 (diff)
downloadperl-93a2cd18e0620f7d49cbc853ffd1212b0ccb834a.tar.gz
Configure's extension sanity check is too strict
Message-ID: <Pine.SOL.4.53.0304251621250.24848@maxwell.phys.lafayette.edu> p4raw-id: //depot/perl@19334
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure11
1 files changed, 10 insertions, 1 deletions
diff --git a/Configure b/Configure
index 3e6925f840..90062ba30f 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Wed Apr 23 22:11:09 EET DST 2003 [metaconfig 3.0 PL70]
+# Generated on Sat Apr 26 00:00:32 EET DST 2003 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -20299,8 +20299,17 @@ case "$noextensions" in
;;
esac
+# Sanity check: We require an extension suitable for use with
+# AnyDBM_File, as well as Fcntl and IO. (Failure to have these
+# should show up as failures in the test suite, but it's helpful to
+# catch them now.) The 'extensions' list is normally sorted
+# alphabetically, so we need to accept either
+# DB_File ... Fcntl ... IO ....
+# or something like
+# Fcntl ... NDBM_File ... IO ....
case "$extensions" in
*"_File "*" Fcntl "*" IO "*) ;;
+*" Fcntl "*"_File "*" IO "*) ;;
*) echo "WARNING: Extensions DB_File or *DBM_File, Fcntl, and IO not configured." >&4
echo "WARNING: The Perl you are building will be quite crippled." >& 4
;;