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

ruby-changes:21303

From: nobu <ko1@a...>
Date: Wed, 28 Sep 2011 09:15:02 +0900 (JST)
Subject: [ruby-changes:21303] nobu:r33352 (trunk): * configure.in (pthread_np.h): needs pthread.h to be included

nobu	2011-09-28 09:14:19 +0900 (Wed, 28 Sep 2011)

  New Revision: 33352

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

  Log:
    * configure.in (pthread_np.h): needs pthread.h to be included
      previously on OpenBSD.  a patch by George Koehler <xkernigh AT
      netscape.net> at [ruby-core:39752].  [Bug #5376]

  Modified files:
    trunk/ChangeLog
    trunk/configure.in

Index: configure.in
===================================================================
--- configure.in	(revision 33351)
+++ configure.in	(revision 33352)
@@ -1793,7 +1793,7 @@
 	AC_DEFINE(_REENTRANT)
 	AC_DEFINE(_THREAD_SAFE)
 	AC_DEFINE(HAVE_LIBPTHREAD)
-	AC_CHECK_HEADERS(pthread_np.h)
+	AC_CHECK_HEADERS(pthread_np.h, [], [], [@%:@include <pthread.h>])
 	AS_CASE([$pthread_lib],
 	[c],    [],
 	[root], [],
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 33351)
+++ ChangeLog	(revision 33352)
@@ -1,3 +1,9 @@
+Wed Sep 28 09:14:16 2011  Nobuyoshi Nakada  <>
+
+	* configure.in (pthread_np.h): needs pthread.h to be included
+	  previously on OpenBSD.  a patch by George Koehler <xkernigh AT
+	  netscape.net> at [ruby-core:39752].  [Bug #5376]
+
 Wed Sep 28 04:41:35 2011  Ayumu AIZAWA  <ayumu.aizawa@g...>
 
 	* test/psych/test_yamlstore.rb: use tmpdir for tmpfile.

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

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