From f76a8084df2a204e193f546c8defdfce3491bfde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Mon, 21 Jun 1999 11:32:25 +0000 Subject: [PATCH] Perl variable names are case-sensitive ... --- CHANGES | 5 +++++ util/mk1mf.pl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index e5571b134f..09509c677a 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,11 @@ 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 file to be loaded from a BIO or FILE pointer. The BIO version will for example allow memory BIOs to contain config info. diff --git a/util/mk1mf.pl b/util/mk1mf.pl index e1e9985063..c9b5b2c502 100755 --- a/util/mk1mf.pl +++ b/util/mk1mf.pl @@ -12,7 +12,7 @@ $ssl_version=""; open(IN,") { $ssl_version=$1 if (/^VERSION=(.*)$/); - $options=$1 if (/^OPTIONS=(.*)$/); + $OPTIONS=$1 if (/^OPTIONS=(.*)$/); $INSTALLTOP=$1 if (/^INSTALLTOP=(.*$)/); } close(IN); -- GitLab