From 130e5a2630b4eddbdce553d0cd6fb5339fb3061a Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Tue, 15 Dec 2009 21:28:59 +0100 Subject: [PATCH] Re-make configure --- bacula/configure | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/bacula/configure b/bacula/configure index 668ec144fd..b9c4dceff4 100755 --- a/bacula/configure +++ b/bacula/configure @@ -41218,7 +41218,21 @@ _ACEOF fi fi -support_xattr=auto +case $DISTNAME in +freebsd) + # + # FreeBSD gives false positives on the xattr function but seems to have problems compiling the code + # for now disable the checks on FreeBSD, Bacula 3.1.x has proper support for xattr on *BSD + # + support_xattr=no + ;; +netbsd) + support_xattr=no + ;; +*) + support_xattr=auto + ;; +esac # Check whether --enable-xattr was given. if test "${enable_xattr+set}" = set; then enableval=$enable_xattr; -- 2.39.5