summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2002-08-26 12:28:49 +0300
committerunknown <monty@hundin.mysql.fi>2002-08-26 12:28:49 +0300
commit207e6ea598e56acb3a77603f85d9f4448a81ddcc (patch)
tree3bb12b7ba03f258e5622f2823451145440c8d1fc /configure.in
parent5f19b0428ee3d3bc433425a19a6b00e302aafe74 (diff)
downloadmariadb-git-207e6ea598e56acb3a77603f85d9f4448a81ddcc.tar.gz
Fix for HPUX to not use -lc_r library.
Fixed hangup problem in net_clear() on HPUX and Windows. Build-tools/Do-compile: Added --bdb-max-lock=60000 option when testing BDB tables. configure.in: Fix for HPUX to not use -lc_r library. vio/viosocket.c: Fixed hangup problem in net_clear() on HPUX and Windows.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5c6330c2672..8a74c3e5265 100644
--- a/configure.in
+++ b/configure.in
@@ -1315,11 +1315,11 @@ AC_CHECK_LIB(pthread,strtok_r)
LIBS="$my_save_LIBS"
if test "$ac_cv_lib_pthread_strtok_r" = "no"
then
- my_save_LIBS="$LIBS"
AC_CHECK_LIB(c_r,strtok_r)
case "$with_osf32_threads---$target_os" in
# Don't keep -lc_r in LIBS; -pthread handles it magically
- yes---* | *---freebsd* ) LIBS="$my_save_LIBS" ;;
+ yes---* | *---freebsd* | *---hpux*) LIBS="$my_save_LIBS" ;;
+
esac
AC_CHECK_FUNCS(strtok_r pthread_init)
else