* configure.in: Don't check for getpwnam_r and getpwuid_r in the thread-safety
authorKen Raeburn <raeburn@mit.edu>
Sat, 26 Mar 2005 02:02:40 +0000 (02:02 +0000)
committerKen Raeburn <raeburn@mit.edu>
Sat, 26 Mar 2005 02:02:40 +0000 (02:02 +0000)
warnings.  The tests done elsewhere in the tree are stricter and may not
agree.

ticket: 2982
status: open

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17156 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/configure.in

index 6113b7b82d1deb242b5ec8bb45de2ebc0a296ef6..edd4b714cc2ce6ccb817f9842ff0bb75e551c42c 100644 (file)
@@ -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
index fc567f2980c46e2b019c7c2563a11cf08e64f3db..26c48d3f04c9db0fdcd5e37e2ac3992ba4b83e1b 100644 (file)
@@ -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=""