ruby-changes:14711
From: naruse <ko1@a...>
Date: Thu, 4 Feb 2010 10:07:46 +0900 (JST)
Subject: [ruby-changes:14711] Ruby:r26567 (trunk): * configure.in: FreeBSD, DragonFly BSD and Mac OS X needs
naruse 2010-02-04 10:00:30 +0900 (Thu, 04 Feb 2010) New Revision: 26567 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=26567 Log: * configure.in: FreeBSD, DragonFly BSD and Mac OS X needs pthread_np.h to use pthread_*_np functions. Mac OS X's pthread_*_np also depend sys/signal.h, but it is included at signal.h via vm_core.h via thread.c. Modified files: trunk/ChangeLog trunk/configure.in Index: configure.in =================================================================== --- configure.in (revision 26566) +++ configure.in (revision 26567) @@ -1499,6 +1499,7 @@ AC_DEFINE(_REENTRANT) AC_DEFINE(_THREAD_SAFE) AC_DEFINE(HAVE_LIBPTHREAD) + AC_CHECK_HEADERS(pthread_np.h) AS_CASE([$pthread_lib], [c], [], [root], [], Index: ChangeLog =================================================================== --- ChangeLog (revision 26566) +++ ChangeLog (revision 26567) @@ -1,3 +1,10 @@ +Thu Feb 4 09:55:38 2010 NARUSE, Yui <naruse@r...> + + * configure.in: FreeBSD, DragonFly BSD and Mac OS X needs + pthread_np.h to use pthread_*_np functions. + Mac OS X's pthread_*_np also depend sys/signal.h, + but it is included at signal.h via vm_core.h via thread.c. + Thu Feb 4 08:15:53 2010 Nobuyoshi Nakada <nobu@r...> * lib/delegate.rb (Delegator): now inherits BasicObject. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/