diff options
author | markd <markd@pkgsrc.org> | 2022-10-06 02:09:42 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2022-10-06 02:09:42 +0000 |
commit | 3e2816c47a1a774a761f06a06941102857552abd (patch) | |
tree | 860d81a8477ed0196108f0b1dfb70ae535e29a71 /print | |
parent | a5c30ef4bb0d002f964df6393e142c2df760e0ac (diff) | |
download | pkgsrc-3e2816c47a1a774a761f06a06941102857552abd.tar.gz |
{cups-base,libcups}: explicitly use gnutls
version 2.4.2 readded support for openssl and package detects and prefers
base system openssl over gnutls but ssl certificate handling is not working
correctly with it so use gnutls as in previous versions.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-base/Makefile | 5 | ||||
-rw-r--r-- | print/libcups/Makefile | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile index 972ab289215..f415c31e1a4 100644 --- a/print/cups-base/Makefile +++ b/print/cups-base/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.49 2022/07/14 23:46:25 dholland Exp $ +# $NetBSD: Makefile,v 1.50 2022/10/06 02:09:42 markd Exp $ .include "../../print/cups/Makefile.common" PKGNAME= cups-base-${CUPS_VERS} -PKGREVISION= 1 +PKGREVISION= 2 MASTER_SITES= ${MASTER_SITE_GITHUB:=OpenPrinting/} MAINTAINER= sbd@NetBSD.org @@ -35,6 +35,7 @@ CONFIGURE_ARGS+= --enable-libpaper CONFIGURE_ARGS+= --without-bundledir CONFIGURE_ARGS+= --without-icondir CONFIGURE_ARGS+= --without-menudir +CONFIGURE_ARGS+= --with-tls=gnutls CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} diff --git a/print/libcups/Makefile b/print/libcups/Makefile index 86ae1bdbda7..148706e5094 100644 --- a/print/libcups/Makefile +++ b/print/libcups/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.18 2022/07/14 23:46:26 dholland Exp $ +# $NetBSD: Makefile,v 1.19 2022/10/06 02:09:42 markd Exp $ .include "../../print/cups/Makefile.common" PKGNAME= libcups-${CUPS_VERS} -PKGREVISION= 1 +PKGREVISION= 2 MASTER_SITES= ${MASTER_SITE_GITHUB:=OpenPrinting/} MAINTAINER= sbd@NetBSD.org @@ -33,6 +33,7 @@ CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups CONFIGURE_ARGS+= --with-components=libcups CONFIGURE_ARGS+= --enable-libpaper CONFIGURE_ARGS+= --with-exe-file-perm=0755 +CONFIGURE_ARGS+= --with-tls=gnutls CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} |