From: Jarkko Hietaniemi Date: Wed, 7 May 2003 19:21:16 +0000 (+0000) Subject: metaconfig unit change for #19440. X-Git-Tag: 5.26.1~492 X-Git-Url: https://perl5.git.perl.org/metaconfig.git/commitdiff_plain/1af58dcc272bf430c6ccd39c1e60ec59e832f477 metaconfig unit change for #19440. p4raw-id: //depot/metaconfig@19441 --- diff --git a/U/perl/Extensions.U b/U/perl/Extensions.U index 6958b45..0333b39 100644 --- a/U/perl/Extensions.U +++ b/U/perl/Extensions.U @@ -431,9 +431,10 @@ extensions="$*" # DB_File ... Fcntl ... IO .... # or something like # Fcntl ... NDBM_File ... IO .... -case "$extensions" in -*"_File "*" Fcntl "*" IO "*) ;; -*" Fcntl "*"_File "*" IO "*) ;; +case " $extensions" in +*"_File "*" Fcntl "*" IO "*) ;; # DB_File +*" Fcntl "*"_File "*" IO "*) ;; # GDBM_File +*" Fcntl "*" IO "*"_File "*) ;; # NDBM_File *) 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 ;;