[openssl-dev] [openssl.org #3521] [PATCH] 1.0.1e: Configure: Correctly Handle GCC --sysroot Option

2016-02-02 Thread Rich Salz via RT
Sorry we didn't get to this sooner. We're only taking security fixes for 1.0.1
now.
Please open a new ticket if this is still an issue with current releases.
also the new build process handles this correctl.
--
Rich Salz, OpenSSL dev team; rs...@openssl.org

___
openssl-dev mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev


[openssl.org #3521] [PATCH] 1.0.1e: Configure: Correctly Handle GCC --sysroot Option

2014-09-09 Thread Grant Erickson via RT
Correctly handle '--sysroot' GCC toolchain option when compiling for the 
Android NDK using targets such as linux-generic32 in which the external
environment passes in the toolchain root.

---
 openssl/Configure | 4 
 1 file changed, 4 insertions(+)

diff --git a/openssl/Configure b/openssl/Configure
index 524201d..29c8ec6 100755
--- a/openssl/Configure
+++ b/openssl/Configure
@@ -930,6 +930,10 @@ PROCESS_ARGS:
{
$cross_compile_prefix=$1;
}
+   elsif (/^--sysroot=(.*)$/)
+   {
+   $flags.=$_. ;
+   }
else
{
print STDERR $usage;
-- 
2.1.0

__
OpenSSL Project http://www.openssl.org
Development Mailing List   openssl-dev@openssl.org
Automated List Manager   majord...@openssl.org