From: Andy Polyakov Date: Mon, 3 Apr 2017 20:31:05 +0000 (+0200) Subject: Configure: recognize -framework as linker option [on Apple OSes]. X-Git-Tag: OpenSSL_1_1_1-pre1~1856 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b7438b430bf0787165ad36105913b342c3974607;p=oweals%2Fopenssl.git Configure: recognize -framework as linker option [on Apple OSes]. This is handy for internal iOS tests, when you have to make it work in sandbox. Reviewed-by: Richard Levitte --- diff --git a/Configure b/Configure index 617ee52cac..66541be41d 100755 --- a/Configure +++ b/Configure @@ -743,6 +743,10 @@ while (@argvcopy) { $libs.=$_." "; } + elsif (/^-framework$/) + { + $libs.=$_." ".shift(@argvcopy)." "; + } elsif (/^-rpath$/ or /^-R$/) # -rpath is the OSF1 rpath flag # -R is the old Solaris rpath flag