Constify char* input parameters in apps code
[openssl.git] / Configure
index bf5b2c667c25b18d67cad8ef0bdfc52ca586bcc5..0a33fc2e41cf7afe534084af7ccd40d576518cf2 100755 (executable)
--- a/Configure
+++ b/Configure
@@ -725,6 +725,13 @@ foreach (@argvcopy)
                        {
                        $libs.=$_." ";
                        }
+               elsif (/^-static$/)
+                       {
+                       $libs.=$_." ";
+                       $disabled{"pic"} = "forced";
+                       $disabled{"shared"} = "forced";
+                       $disabled{"threads"} = "forced";
+                       }
                elsif (/^-D(.*)$/)
                        {
                        push @user_defines, $1;