mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
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>
This commit is contained in:
parent
b98530d6e0
commit
b7438b430b
@ -743,6 +743,10 @@ while (@argvcopy)
|
|||||||
{
|
{
|
||||||
$libs.=$_." ";
|
$libs.=$_." ";
|
||||||
}
|
}
|
||||||
|
elsif (/^-framework$/)
|
||||||
|
{
|
||||||
|
$libs.=$_." ".shift(@argvcopy)." ";
|
||||||
|
}
|
||||||
elsif (/^-rpath$/ or /^-R$/)
|
elsif (/^-rpath$/ or /^-R$/)
|
||||||
# -rpath is the OSF1 rpath flag
|
# -rpath is the OSF1 rpath flag
|
||||||
# -R is the old Solaris rpath flag
|
# -R is the old Solaris rpath flag
|
||||||
|
Loading…
Reference in New Issue
Block a user