diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Mon Feb 8 10:28:58 2010 Yukihiro Matsumoto <[email protected]> + + * configure.in: check pthread_attr_getstack to prevent obsolete + warning for pthread_attr_getstackaddr. + Sun Feb 7 23:12:34 2010 Tanaka Akira <[email protected]> * sample/test.rb: sort files for syntax validataion. diff --git a/configure.in b/configure.in index 3a79b7b5a0..d65f4818d9 100644 --- a/configure.in +++ b/configure.in @@ -1509,7 +1509,7 @@ if test x"$enable_pthread" = xyes; then AC_MSG_WARN("Don't know how to find pthread library on your system -- thread support disabled") fi AC_CHECK_FUNCS(nanosleep sched_yield pthread_attr_setinheritsched \ - pthread_getattr_np pthread_attr_get_np \ + pthread_getattr_np pthread_attr_get_np pthread_attr_getstack\ pthread_get_stackaddr_np pthread_get_stacksize_np \ thr_stksegment pthread_stackseg_np) if test x"$ac_cv_func_nanosleep" = xno; then |