[前][次][番号順一覧][スレッド一覧]

ruby-changes:28413

From: akr <ko1@a...>
Date: Thu, 25 Apr 2013 17:57:55 +0900 (JST)
Subject: [ruby-changes:28413] akr:r40465 (trunk): * ext/socket/extconf.rb: Remove obsolete options: ---with-ipv6-lib and

akr	2013-04-25 17:57:15 +0900 (Thu, 25 Apr 2013)

  New Revision: 40465

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40465

  Log:
    * ext/socket/extconf.rb: Remove obsolete options: ---with-ipv6-lib and
      --with-ipv6-libdir.

  Modified files:
    trunk/ChangeLog
    trunk/ext/socket/extconf.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 40464)
+++ ChangeLog	(revision 40465)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Apr 25 17:56:39 2013  Tanaka Akira  <akr@f...>
+
+	* ext/socket/extconf.rb: Remove obsolete options: ---with-ipv6-lib and
+	  --with-ipv6-libdir.
+
 Thu Apr 25 17:43:49 2013  Tanaka Akira  <akr@f...>
 
 	* ext/socket/extconf.rb: Implement
Index: ext/socket/extconf.rb
===================================================================
--- ext/socket/extconf.rb	(revision 40464)
+++ ext/socket/extconf.rb	(revision 40465)
@@ -409,13 +409,6 @@ EOF https://github.com/ruby/ruby/blob/trunk/ext/socket/extconf.rb#L409
         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

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]