diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-07 19:20:53 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-05-07 19:20:53 +0000 |
commit | 42fde7b2ff12d979bd575ebf1530df889d1680e3 (patch) | |
tree | dfe0477b92c48b01d4ea98c97cee7f664f0b9c77 /Configure | |
parent | d2e0c6f79ef142ca2a2058cb0c41174a92b0b229 (diff) | |
download | perl-42fde7b2ff12d979bd575ebf1530df889d1680e3.tar.gz |
One more possible extensions permutation.
p4raw-id: //depot/perl@19440
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Wed May 7 21:09:25 EET DST 2003 [metaconfig 3.0 PL70] +# Generated on Wed May 7 23:33:48 EET DST 2003 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -20311,9 +20311,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 ;; |