diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-02 07:50:51 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-08-02 07:50:51 +0000 |
commit | f0d0442576ea74c58911be43ef48f5977fe2e1fa (patch) | |
tree | ca19a1388c60f6eb5af6b5d3520cc89c50c6faa9 /Configure | |
parent | 77fbe705dd0aebecbdf330bd45fc5ea1b3016168 (diff) | |
download | perl-f0d0442576ea74c58911be43ef48f5977fe2e1fa.tar.gz |
d_bincompat5005 could be left empty.
p4raw-id: //depot/cfgperl@3875
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 15 |
1 files changed, 11 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 Mon Aug 2 01:31:40 EET DST 1999 [metaconfig 3.0 PL70] +# Generated on Mon Aug 2 10:49:27 EET DST 1999 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.com) cat >/tmp/c1$$ <<EOF @@ -3626,7 +3626,10 @@ fi : Binary compatibility with 5.005 is not possible for builds : with advanced features case "$usethreads$usemultiplicity" in -*define*) bincompat5005="$undef" ;; +*define*) + bincompat5005="$undef" + d_bincompat5005="$undef" + ;; *) $cat <<EOM Perl 5.006 can be compiled for binary compatibility with 5.005. @@ -3647,8 +3650,12 @@ EOM set d_bincompat5005 eval $setvar case "$d_bincompat5005" in - "$define") bincompat5005="$define" ;; - *) bincompat5005="$undef" ;; + "$define") + bincompat5005="$define" + ;; + *) bincompat5005="$undef" + d_bincompat5005="$undef" + ;; esac ;; esac |