diff options
author | abs <abs@pkgsrc.org> | 2005-05-18 12:16:53 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2005-05-18 12:16:53 +0000 |
commit | 79ce8f74c618ed7e817805bf885af89bec61a860 (patch) | |
tree | 791c0a1ab4c4e739aebfd7dff4ccdfe391379816 /print | |
parent | 68e0b46f7082cb8b4642fdf039d65a198c6069f6 (diff) | |
download | pkgsrc-79ce8f74c618ed7e817805bf885af89bec61a860.tar.gz |
If we are not using cups then explicitly disable cups support so we do not
pick up up by accident (and fail to build)
Diffstat (limited to 'print')
-rw-r--r-- | print/xfce4-print/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/print/xfce4-print/Makefile b/print/xfce4-print/Makefile index b0ea35853ec..1ce905ccf37 100644 --- a/print/xfce4-print/Makefile +++ b/print/xfce4-print/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2005/03/31 18:12:29 drochner Exp $ +# $NetBSD: Makefile,v 1.11 2005/05/18 12:16:53 abs Exp $ .include "../../meta-pkgs/xfce4/Makefile.common" @@ -13,6 +13,8 @@ CONFIGURE_ARGS+= --with-printcap=/etc/printcap .if defined(USE_CUPS) .include "../../print/cups/buildlink3.mk" +.else +CONFIGURE_ARGS+= --disable-cups .endif .include "../../x11/xfce4-mcs-plugins/buildlink3.mk" |