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

ruby-changes:16602

From: kosaki <ko1@a...>
Date: Sat, 10 Jul 2010 10:53:53 +0900 (JST)
Subject: [ruby-changes:16602] Ruby:r28595 (ruby_1_8): * configure.in: fix use_context condition inversion.

kosaki	2010-07-10 10:53:40 +0900 (Sat, 10 Jul 2010)

  New Revision: 28595

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

  Log:
    * configure.in: fix use_context condition inversion.

  Modified files:
    branches/ruby_1_8/ChangeLog
    branches/ruby_1_8/configure.in

Index: ruby_1_8/configure.in
===================================================================
--- ruby_1_8/configure.in	(revision 28594)
+++ ruby_1_8/configure.in	(revision 28595)
@@ -1151,7 +1151,7 @@
 if test x"$rb_with_pthread" = xyes; then
     AS_CASE("$target_cpu:$target_os:$cross_compiling",
     [*:linux*:no], [
-        if test -n "`(/lib/libc.so.6 2>/dev/null | fgrep 'Native POSIX Threads') 2> /dev/null`"; then
+        if test -n "`(/lib/libc.so.6 2>/dev/null | fgrep 'linuxthreads') 2> /dev/null`"; then
 	    use_context=yes
 	fi
     ],
Index: ruby_1_8/ChangeLog
===================================================================
--- ruby_1_8/ChangeLog	(revision 28594)
+++ ruby_1_8/ChangeLog	(revision 28595)
@@ -1,3 +1,7 @@
+Sat Jul 10 10:51:29 2010  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* configure.in: fix use_context condition inversion.
+
 Fri Jul  9 23:31:26 2010  NAKAMURA, Hiroshi  <nahi@r...>
 
 	* test/openssl/test_config.rb: more tests for parse_config formats.

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

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