]> git.ipfire.org Git - thirdparty/openssl.git/commit - Configure
Fix check of -DOPENSSL_USE_APPLINK in $config{cflags}
authorRichard Levitte <levitte@openssl.org>
Tue, 16 Feb 2016 22:27:13 +0000 (23:27 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 17 Feb 2016 19:07:06 +0000 (20:07 +0100)
commitd918f9cb2d105675728af8be1e14d23208200c24
tree88a27507ad0861cd836995a3efa34626b8b78f8a
parent1288f26fb9c3cfe6c5919b706e30d3f0b2d55b0b
Fix check of -DOPENSSL_USE_APPLINK in $config{cflags}

The previous fix wasn't right.

Also, change all (^|\s) and (\s|$) constructs to (?:^|\s) and (?:\s|$).
Perl seems to like that better.

Reviewed-by: Andy Polyakov <appro@openssl.org>
Configure