From 9d9aa0de1ac1ba09c8c4e605327e16648546fa47 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 25 Apr 2003 19:50:54 +0000 Subject: [PATCH] metaconfig unit change for #19334 and #19335. p4raw-id: //depot/metaconfig@19336 --- U/perl/Extensions.U | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/U/perl/Extensions.U b/U/perl/Extensions.U index 4446f72..70bfe9a 100644 --- a/U/perl/Extensions.U +++ b/U/perl/Extensions.U @@ -423,8 +423,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 ;; -- 1.8.3.1