summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/configure.in6
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 6113b7b82..edd4b714c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
+2005-03-25 Ken Raeburn <raeburn@mit.edu>
+
+ * configure.in: Don't check for getpwnam_r and getpwuid_r in the
+ thread-safety warnings. The tests done elsewhere in the tree are
+ stricter and may not agree.
+
2005-03-04 Ken Raeburn <raeburn@mit.edu>
* aclocal.m4 (KRB5_AC_ENABLE_THREADS): Expand on error message if
diff --git a/src/configure.in b/src/configure.in
index fc567f298..26c48d3f0 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -133,7 +133,11 @@ dnl
dnl
dnl Check for thread safety issues.
dnl (Is there a better place for this?)
-tsfuncs="getpwnam_r getpwuid_r gethostbyname_r getservbyname_r gmtime_r localtime_r"
+dnl tsfuncs="getpwnam_r getpwuid_r gethostbyname_r getservbyname_r gmtime_r localtime_r"
+dnl Removed getpwnam_r and getpwuid_r because include/configure.in has some
+dnl more careful checks, and may decide to pretend that they're not found if
+dnl the function signatures can't be figured out.
+tsfuncs="gethostbyname_r getservbyname_r gmtime_r localtime_r"
AC_CHECK_FUNCS($tsfuncs)
if test "$enable_thread_support" = yes; then
tsmissing=""