[openssl-commits] [openssl] master update

Andy Polyakov appro at openssl.org
Tue Apr 4 21:14:06 UTC 2017


The branch master has been updated
       via  b7438b430bf0787165ad36105913b342c3974607 (commit)
      from  b98530d6e09f4cb34c791b8840e936c1fc1467cf (commit)


- Log -----------------------------------------------------------------
commit b7438b430bf0787165ad36105913b342c3974607
Author: Andy Polyakov <appro at openssl.org>
Date:   Mon Apr 3 22:31:05 2017 +0200

    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 at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 Configure | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Configure b/Configure
index 617ee52..66541be 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


More information about the openssl-commits mailing list