diff options
author | abs <abs> | 2005-05-18 12:16:53 +0000 |
---|---|---|
committer | abs <abs> | 2005-05-18 12:16:53 +0000 |
commit | 4f405b5cb13dbf2cb560bf718b9215ef78b3d1c6 (patch) | |
tree | 791c0a1ab4c4e739aebfd7dff4ccdfe391379816 /print/xfce4-print | |
parent | d30b0ce07ae6df09d1528b8364785352a0858fa2 (diff) | |
download | pkgsrc-4f405b5cb13dbf2cb560bf718b9215ef78b3d1c6.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/xfce4-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" |