From 682177e1691b61ec24928e7793336e8b8df60428 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 28 Sep 2011 00:14:19 +0000 Subject: * configure.in (pthread_np.h): needs pthread.h to be included previously on OpenBSD. a patch by George Koehler at [ruby-core:39752]. [Bug #5376] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f762adf5b3..b0d95a202c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 at [ruby-core:39752]. [Bug #5376] + Wed Sep 28 04:41:35 2011 Ayumu AIZAWA * test/psych/test_yamlstore.rb: use tmpdir for tmpfile. diff --git a/configure.in b/configure.in index 3af6aaa893..fff3a07eb0 100644 --- a/configure.in +++ b/configure.in @@ -1793,7 +1793,7 @@ if test x"$enable_pthread" = xyes; then AC_DEFINE(_REENTRANT) AC_DEFINE(_THREAD_SAFE) AC_DEFINE(HAVE_LIBPTHREAD) - AC_CHECK_HEADERS(pthread_np.h) + AC_CHECK_HEADERS(pthread_np.h, [], [], [@%:@include ]) AS_CASE([$pthread_lib], [c], [], [root], [], -- cgit v1.2.3