From: Michal Rakowski Date: Wed, 13 Oct 2021 16:59:25 +0000 (+0200) Subject: update autoconf X-Git-Tag: Beta-15.0.0~826 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aef11208649a7b0ebe6e95108364e5558fe632dc;p=thirdparty%2Fbacula.git update autoconf --- diff --git a/bacula/autoconf/config.h.in b/bacula/autoconf/config.h.in index 1ba536f36..8ccfe1baa 100644 --- a/bacula/autoconf/config.h.in +++ b/bacula/autoconf/config.h.in @@ -1134,6 +1134,12 @@ /* Define to 1 if you have IMMUTABLE file flag supported */ #undef HAVE_IMMUTABLE_FL +/* Define to 1 if you have FS_IOC_GETFLAGS ioctl supported */ +#undef HAVE_FS_IOC_GETFLAGS + +/* Define to 1 if you have FS_IOC_SETFLAGS ioctl supported */ +#undef HAVE_FS_IOC_SETFLAGS + /* Define to 1 if you have working ldap libraries */ #undef HAVE_LDAP diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 01b5fc282..d83cf53bf 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -2583,6 +2583,20 @@ AC_CHECK_DECL( [#include ] ) +AC_CHECK_DECL( + FS_IOC_GETFLAGS, + AC_DEFINE(HAVE_FS_IOC_GETFLAGS, 1, [Set if FS_IOC_GETFLAGS is available]), + , + [#include ] +) + +AC_CHECK_DECL( + FS_IOC_SETFLAGS, + AC_DEFINE(HAVE_FS_IOC_SETFLAGS, 1, [Set if FS_IOC_SETFLAGS is available]), + , + [#include ] +) + AC_CHECK_DECL( F_SETLK, AC_DEFINE(HAVE_FCNTL_LOCK, 1, [Set if fcntl supports file locking]),