aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/extconf.rb
diff options
context:
space:
mode:
authoremboss <emboss@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-26 23:43:04 +0000
committeremboss <emboss@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-10-26 23:43:04 +0000
commit4fe2dacee7657a381a5ff6fc3b0bffa658b08731 (patch)
tree7eb081701b61fc317b411bbb5a330c0f521f5e44 /ext/openssl/extconf.rb
parente15e5251c3efb9e54b6dc9571672a0c8d7984c59 (diff)
downloadruby-4fe2dacee7657a381a5ff6fc3b0bffa658b08731.tar.gz
* ext/openssl/extconf.rb: add -Wall flag by default when compiler is
GCC. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/extconf.rb')
-rw-r--r--ext/openssl/extconf.rb11
1 files changed, 7 insertions, 4 deletions
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb
index 114f8058a8..8d8cee3634 100644
--- a/ext/openssl/extconf.rb
+++ b/ext/openssl/extconf.rb
@@ -22,15 +22,18 @@ dir_config("kerberos")
message "=== OpenSSL for Ruby configurator ===\n"
##
-# Adds -Wall -DOSSL_DEBUG for compilation and some more targets when GCC is used
+# Adds -DOSSL_DEBUG for compilation and some more targets when GCC is used
# To turn it on, use: --with-debug or --enable-debug
#
if with_config("debug") or enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
+end
- if CONFIG['GCC'] == 'yes'
- $CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
- end
+##
+# Automatically adds -Wall flag for compilation when GCC is used
+#
+if CONFIG['GCC'] == 'yes'
+ $CPPFLAGS += " -Wall" unless $CPPFLAGS.split.include? "-Wall"
end
message "=== Checking for system dependent stuff... ===\n"