diff options
author | wxs <wxs@FreeBSD.org> | 2009-06-02 00:49:39 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2009-06-02 00:49:39 +0800 |
commit | 274b054888641c07a048354a284dba49fc658199 (patch) | |
tree | a94902490dda0334215512ca353753819e5f1723 /sysutils | |
parent | 9fc8fd7eab63f9909878aa846b4dc130eb470cf0 (diff) | |
download | freebsd-ports-gnome-274b054888641c07a048354a284dba49fc658199.tar.gz freebsd-ports-gnome-274b054888641c07a048354a284dba49fc658199.tar.zst freebsd-ports-gnome-274b054888641c07a048354a284dba49fc658199.zip |
- Disable extended attributes to fix build on -current
PR: ports/133751
Submitted by: Oleg Ginzburg <oleg.ginzburg@nevosoft.ru>
Approved by: maintainer timeout
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/bacula-server/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sysutils/bacula-server/Makefile b/sysutils/bacula-server/Makefile index a2cee72a5ffc..7325022b726b 100644 --- a/sysutils/bacula-server/Makefile +++ b/sysutils/bacula-server/Makefile @@ -131,10 +131,6 @@ CONFIGURE_ARGS+= --enable-nls CONFIGURE_ARGS+= --disable-nls .endif -.if defined(WITH_CLIENT_ONLY) && (${OSVERSION} >= 800000) -BROKEN= Does not build due to missing llistxattr -.endif - # overridden if client install PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.server PKGINSTALL= ${PKGDIR}/pkg-install.server @@ -142,7 +138,8 @@ PKGINSTALL= ${PKGDIR}/pkg-install.server # Client only or full server version .if defined(WITH_CLIENT_ONLY) CONFFILES= fd -CONFIGURE_ARGS+= --enable-client-only +# --disable-xattr is temporary to allow build with 8-current +CONFIGURE_ARGS+= --enable-client-only --disable-xattr PKGDEINSTALL= ${PKGDIR}/pkg-deinstall.client PKGINSTALL= ${PKGDIR}/pkg-install.client |