diff options
author | wiz <wiz@pkgsrc.org> | 2010-05-16 13:08:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2010-05-16 13:08:10 +0000 |
commit | 5ba21e3d4c08e48d1349ed9b65fc25a63ca14c19 (patch) | |
tree | 926e7199278b181fbe4561f1307c0be062b5c5eb /sysutils | |
parent | b674e975085274aa90bc6bef6e711b672891d92f (diff) | |
download | pkgsrc-5ba21e3d4c08e48d1349ed9b65fc25a63ca14c19.tar.gz |
Disable extattr on DragonFly. From Jan Lentfer in PR 43312.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bacula/Makefile.common | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysutils/bacula/Makefile.common b/sysutils/bacula/Makefile.common index 31213fc2084..1284e458e16 100644 --- a/sysutils/bacula/Makefile.common +++ b/sysutils/bacula/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.54 2010/05/08 09:05:47 adam Exp $ +# $NetBSD: Makefile.common,v 1.55 2010/05/16 13:08:10 wiz Exp $ # # used by sysutils/bacula-clientonly/Makefile # used by sysutils/bacula-tray-monitor/Makefile @@ -64,6 +64,9 @@ CONFIGURE_ARGS+= --with-readline=${PREFIX}/include/readline .if ${OPSYS} == "Linux" CONFIGURE_ARGS+= --enable-smartalloc .endif +.if ${OPSYS} == "DragonFly" +CONFIGURE_ARGS+= --disable-xattr +.endif PTHREAD_OPTS+= require PTHREAD_AUTO_VARS= yes |