Configure's extension sanity check is too strict
authorAndy Dougherty <doughera@lafayette.edu>
Fri, 25 Apr 2003 16:23:45 +0000 (12:23 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Fri, 25 Apr 2003 19:48:31 +0000 (19:48 +0000)
Message-ID: <Pine.SOL.4.53.0304251621250.24848@maxwell.phys.lafayette.edu>

p4raw-id: //depot/perl@19334

Configure

index 3e6925f..90062ba 100755 (executable)
--- 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
    ;;