]> granicus.if.org Git - sudo/commitdiff
There should be no need to check for tzset() as it is POSIX.
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 18 May 2015 19:42:06 +0000 (13:42 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 18 May 2015 19:42:06 +0000 (13:42 -0600)
config.h.in
configure
configure.ac
src/sudo.c

index 290dccc2f2335c05b91f6cabdd6c556364489c9e..c84d5b1bd1e395e5106e461916e25ea4e8e4f568 100644 (file)
 /* Define to 1 if you have the `ttyslot' function. */
 #undef HAVE_TTYSLOT
 
-/* Define to 1 if you have the `tzset' function. */
-#undef HAVE_TZSET
-
 /* Define to 1 if you have the <unistd.h> header file. */
 #undef HAVE_UNISTD_H
 
index 582e0f52daf9cc021b5efcf4d672ffc39a39f2a7..c14828b598ecc8d9a99c61886bcc17d9fb6e1713 100755 (executable)
--- a/configure
+++ b/configure
@@ -2655,7 +2655,6 @@ as_fn_append ac_header_list " sys/sysmacros.h"
 as_fn_append ac_func_list " killpg"
 as_fn_append ac_func_list " nl_langinfo"
 as_fn_append ac_func_list " strftime"
-as_fn_append ac_func_list " tzset"
 as_fn_append ac_func_list " seteuid"
 # Check that the precious variables saved in the cache have kept the same
 # value.
@@ -17960,8 +17959,6 @@ done
 
 
 
-
-
 for ac_func in getgrouplist
 do :
   ac_fn_c_check_func "$LINENO" "getgrouplist" "ac_cv_func_getgrouplist"
index 250d8307dab176ae9351c6b9b6f370360b0b576b..fe4c1bd6e9a5926b5951cd928e7ff8db055f799d 100644 (file)
@@ -2400,7 +2400,7 @@ dnl
 dnl Function checks
 dnl
 AC_FUNC_GETGROUPS
-AC_CHECK_FUNCS_ONCE([killpg nl_langinfo strftime tzset])
+AC_CHECK_FUNCS_ONCE([killpg nl_langinfo strftime])
 AC_CHECK_FUNCS([getgrouplist], [], [
     case "$host_os" in
     aix*)
index 0ef86493d5cee06a25e73607dca62338628221b8..1265ffe22665c4a844129683cbb9a54884fd7301 100644 (file)
@@ -162,9 +162,7 @@ main(int argc, char *argv[], char *envp[])
     bindtextdomain(PACKAGE_NAME, LOCALEDIR);
     textdomain(PACKAGE_NAME);
 
-#ifdef HAVE_TZSET
     (void) tzset();
-#endif /* HAVE_TZSET */
 
     /* Must be done before we do any password lookups */
 #if defined(HAVE_GETPRPWNAM) && defined(HAVE_SET_AUTH_PARAMETERS)