Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-02-18 15:15:13 +0300
committerRichard Levitte <levitte@openssl.org>2003-02-18 15:15:13 +0300
commitcc811b1d7edce8c7c28ff790669e0b5ae43c6719 (patch)
treee64d6c6f4414e9c2d2b4d0a258c0c3ca02ad924d /Configure
parenta81d9af7f77dfabbbed62b0f2d950490e8eb76eb (diff)
Make the no-err option work properly
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/Configure b/Configure
index 851158af2d..768651f03c 100755
--- a/Configure
+++ b/Configure
@@ -692,6 +692,11 @@ PROCESS_ARGS:
$flags .= "-DOPENSSL_NO_ASM ";
$openssl_other_defines .= "#define OPENSSL_NO_ASM\n";
}
+ elsif (/^no-err$/)
+ {
+ $flags .= "-DOPENSSL_NO_ERR ";
+ $openssl_other_defines .= "#define OPENSSL_NO_ERR\n";
+ }
elsif (/^no-hw-(.+)$/)
{
my $hw=$1;