aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2017-04-03 22:31:05 +0200
committerAndy Polyakov <appro@openssl.org>2017-04-04 23:13:17 +0200
commitb7438b430bf0787165ad36105913b342c3974607 (patch)
tree84b1cbf768e04a5784da6c51a6b764e83c0a41cb
parentb98530d6e09f4cb34c791b8840e936c1fc1467cf (diff)
downloadopenssl-b7438b430bf0787165ad36105913b342c3974607.tar.gz
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 <levitte@openssl.org>
-rwxr-xr-xConfigure4
1 files changed, 4 insertions, 0 deletions
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