From: Eric Bollengier Date: Mon, 7 Feb 2022 16:11:34 +0000 (+0100) Subject: Add check for getpwent_r in ./configure X-Git-Tag: Release-11.3.2~305 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=040f55ad932b1cda6affadd82f8680ec36d0a80c;p=thirdparty%2Fbacula.git Add check for getpwent_r in ./configure --- diff --git a/bacula/autoconf/config.h.in b/bacula/autoconf/config.h.in index 050303ec5..a2b0d2dc4 100644 --- a/bacula/autoconf/config.h.in +++ b/bacula/autoconf/config.h.in @@ -540,6 +540,9 @@ /* Define to 1 if you have the `getrlimit' function. */ #undef HAVE_GETRLIMIT +/* Define to 1 if you have the `getpwent_r' function */ +#undef HAVE_GETPWENT_R + /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index b57462267..48276f4b9 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -2433,6 +2433,7 @@ AC_CHECK_FUNCS(posix_fallocate) AC_CHECK_FUNCS(fdatasync) AC_CHECK_FUNCS(realpath) AC_CHECK_FUNCS(getrlimit) +AC_CHECK_FUNCS(getpwent_r) AC_CHECK_FUNCS(chflags)