From: Andy Polyakov Date: Fri, 16 Dec 2005 11:29:19 +0000 (+0000) Subject: Allow for warning-free passing of -Wl options on config command line. One X-Git-Tag: OpenSSL_0_9_8k^2~1644 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d719e60cb40448ae6de4407ac7f2c25644eb1120;p=oweals%2Fopenssl.git Allow for warning-free passing of -Wl options on config command line. One possible usage is to pass -Wl,-z,-noexecstack on Linux to ensure the stack is marked non-executable. Well, -Wa,--noexecstack works fine too... --- diff --git a/Configure b/Configure index aa818ac053..ac532bcdb2 100755 --- a/Configure +++ b/Configure @@ -724,7 +724,7 @@ PROCESS_ARGS: } elsif (/^[-+]/) { - if (/^-[lL](.*)$/) + if (/^-[lL](.*)$/ or /^-Wl,/) { $libs.=$_." "; }