summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>1999-06-18 07:19:38 +0000
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>1999-06-18 07:19:38 +0000
commit07e460307368f8fd868e6be0177bd926acae57a2 (patch)
tree61d84733eb12f3b2c71a4d8d3828ae3d8e7ff17f /configure.in
parentf052c34705ccdb2a7a3eb38a7a9412a1d6b9c81c (diff)
downloadglib-07e460307368f8fd868e6be0177bd926acae57a2.tar.gz
Changed test for pthread_attr_setstacksize from AC_TRY_COMPILE to
1999-06-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * configure.in: Changed test for pthread_attr_setstacksize from AC_TRY_COMPILE to AC_TRY_LINK.
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 94ba9d5f0..5bb16dfce 100644
--- a/configure.in
+++ b/configure.in
@@ -828,7 +828,7 @@ if test x"$enable_threads" = xyes; then
# This is not AC_CHECK_FUNC to also work with function
# name mangling in header files.
AC_MSG_CHECKING(for pthread_attr_setstacksize)
- AC_TRY_COMPILE([#include <pthread.h>],
+ AC_TRY_LINK([#include <pthread.h>],
[pthread_attr_setstacksize(NULL,0)],
[AC_MSG_RESULT(yes)
AC_DEFINE(HAVE_PTHREAD_ATTR_SETSTACKSIZE)],