summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 09:35:28 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-12-20 09:35:28 +0000
commitff3e1957465fa7c790077d93e250a8c9545e6af2 (patch)
tree7d1ad6ca692dde95e93941354a76ab9b38b51519 /configure.in
parentc334a09f7ad58c692ec86e1d55c561e86806260b (diff)
* configure.in: add libthr for FreeBSD.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14365 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 1fd0097303..ba3abcb162 100644
--- a/configure.in
+++ b/configure.in
@@ -901,7 +901,7 @@ int main()
AC_DEFINE_UNQUOTED(STACK_GROW_DIRECTION, $rb_cv_stack_grow_dir)
if test x"$enable_pthread" = xyes; then
- for pthread_lib in pthread pthreads c c_r; do
+ for pthread_lib in thr pthread pthreads c c_r; do
AC_CHECK_LIB($pthread_lib, pthread_kill,
rb_with_pthread=yes, rb_with_pthread=no)
if test "$rb_with_pthread" = "yes"; then break; fi