Perl variable names are case-sensitive ...

This commit is contained in:
Bodo Möller 1999-06-21 11:32:25 +00:00
parent 10cea23bd4
commit f76a8084df
2 changed files with 6 additions and 1 deletions

View File

@ -4,6 +4,11 @@
Changes between 0.9.3a and 0.9.4 Changes between 0.9.3a and 0.9.4
*) mk1mf.pl (used by Windows builds) did not properly read the
options set by Configure in the top level Makefile; typo fixed,
now "no-idea" etc. works as intended.
[Bodo Moeller]
*) New functions CONF_load_bio() and CONF_load_fp() to allow a config *) New functions CONF_load_bio() and CONF_load_fp() to allow a config
file to be loaded from a BIO or FILE pointer. The BIO version will file to be loaded from a BIO or FILE pointer. The BIO version will
for example allow memory BIOs to contain config info. for example allow memory BIOs to contain config info.

View File

@ -12,7 +12,7 @@ $ssl_version="";
open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n"; open(IN,"<Makefile.ssl") || die "unable to open Makefile.ssl!\n";
while(<IN>) { while(<IN>) {
$ssl_version=$1 if (/^VERSION=(.*)$/); $ssl_version=$1 if (/^VERSION=(.*)$/);
$options=$1 if (/^OPTIONS=(.*)$/); $OPTIONS=$1 if (/^OPTIONS=(.*)$/);
$INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/); $INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/);
} }
close(IN); close(IN);