diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-25 08:57:15 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-04-25 08:57:15 +0000 |
commit | 0ff2e1d531b9975574591aa79982076eecdeb4d2 (patch) | |
tree | 287d6e0a4efe7bd13795080a87783ab20e817e9c /ext/socket/extconf.rb | |
parent | 79b807118f82c7ebbb4a5e06315e6a9127ccaa3d (diff) |
* ext/socket/extconf.rb: Remove obsolete options: ---with-ipv6-lib and
--with-ipv6-libdir.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40465 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/socket/extconf.rb')
-rw-r--r-- | ext/socket/extconf.rb | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/socket/extconf.rb b/ext/socket/extconf.rb index 41f48ef4b0..afdb6368f7 100644 --- a/ext/socket/extconf.rb +++ b/ext/socket/extconf.rb @@ -409,13 +409,6 @@ EOF have_library(ipv6lib = "v6") and "v6d" elsif have_macro("_ZETA_MINAMI_INET6", "sys/param.h") have_library(ipv6lib = "inet6") and "zeta" - elsif ipv6lib = with_config("ipv6-lib") - warn <<EOS ---with-ipv6-lib and --with-ipv6-libdir option will be obsolete, use ---with-inet6lib and --with-inet6-{include,lib} options instead. -EOS - find_library(ipv6lib, nil, with_config("ipv6-libdir", ldirs)) and - ipv6lib elsif have_library("inet6") "inet6" end |