From: Eric Bollengier Date: Fri, 10 Sep 2010 13:05:12 +0000 (+0200) Subject: Detect acl_get() on AIX to enable ACL code X-Git-Tag: Release-7.0.0~1567 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7b204da47ae03e7d11051c912cecbecad8d860f4;p=bacula%2Fbacula Detect acl_get() on AIX to enable ACL code --- diff --git a/bacula/autoconf/configure.in b/bacula/autoconf/configure.in index 7341ec1890..834d1a090d 100644 --- a/bacula/autoconf/configure.in +++ b/bacula/autoconf/configure.in @@ -2557,7 +2557,14 @@ if test x$support_acl = xyes -o x$support_acl = xauto; then have_extended_acl=yes ] ) - ] + ], [ + dnl check for AIX + AC_CHECK_FUNC(acl_get, + [ + have_acl=yes + ] + ) + ] ) ] )