]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Add tzset check in ./configure
authorEric Bollengier <eric@baculasystems.com>
Mon, 29 Nov 2021 16:10:02 +0000 (17:10 +0100)
committerEric Bollengier <eric@baculasystems.com>
Thu, 14 Sep 2023 11:56:56 +0000 (13:56 +0200)
bacula/autoconf/config.h.in
bacula/autoconf/configure.in

index 8ccfe1baac21431a5368bcab03c104381edfc9eb..75634d31e527f5597e56edd482a7e75af41d89f4 100644 (file)
 /* Define to 1 if you have the `tcgetattr' function. */
 #undef HAVE_TCGETATTR
 
+/* Define to 1 if you have the `tzset' function. */
+#undef HAVE_TZSET
+
 /* Define to 1 if you have the <termcap.h> header file. */
 #undef HAVE_TERMCAP_H
 
index 66acf6b5ed3717a36ba2dac74f4fe774b36a9fac..e47c71ae6e009ab6af29261dd811759383c45d80 100644 (file)
@@ -835,7 +835,9 @@ MAKE_SHELL=/bin/sh
 AC_SUBST(MAKE_SHELL)
 AC_HEADER_STAT
 AC_HEADER_DIRENT
-AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr)
+AC_CHECK_HEADERS(sys/fsuid.h)
+AC_CHECK_FUNCS(setfsgid setfsuid)
+AC_CHECK_FUNCS(strcasecmp select setenv putenv tcgetattr tzset)
 AC_CHECK_FUNCS(lstat lchown lchmod futimes fchmod fchown lutimes)
 AC_CHECK_FUNCS(nanosleep nl_langinfo)
 AC_CHECK_FUNCS(be64toh htobe64)