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)
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>

No differences found