aboutsummaryrefslogtreecommitdiffstats
path: root/ext/openssl/extconf.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-22 12:22:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-04-22 12:22:57 +0000
commitec646dccdd208802f571afe6fff71f67de62029c (patch)
treed0997c9e31437d2cd234aec79c3fdbe05f9b5c87 /ext/openssl/extconf.rb
parentf7d01d27a60a53862e3d62dae80bee8d7ec23db5 (diff)
downloadruby-ec646dccdd208802f571afe6fff71f67de62029c.tar.gz
* ext/openssl/extconf.rb: configure.in adds -Wall to warnflags, not
CPPFLAGS. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35426 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/openssl/extconf.rb')
-rw-r--r--ext/openssl/extconf.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/openssl/extconf.rb b/ext/openssl/extconf.rb
index 44ea3e5d0e..d271cf83b9 100644
--- a/ext/openssl/extconf.rb
+++ b/ext/openssl/extconf.rb
@@ -29,13 +29,6 @@ if with_config("debug") or enable_config("debug")
$defs.push("-DOSSL_DEBUG") unless $defs.include? "-DOSSL_DEBUG"
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"
have_library("nsl", "t_open")
have_library("socket", "socket")