This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
metaconfig unit change for #19440.
authorJarkko Hietaniemi <jhi@iki.fi>
Wed, 7 May 2003 19:21:16 +0000 (19:21 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Wed, 7 May 2003 19:21:16 +0000 (19:21 +0000)
p4raw-id: //depot/metaconfig@19441

U/perl/Extensions.U

index 6958b45..0333b39 100644 (file)
@@ -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
    ;;