diff options
author | hauke <hauke@pkgsrc.org> | 2020-08-11 12:40:54 +0000 |
---|---|---|
committer | hauke <hauke@pkgsrc.org> | 2020-08-11 12:40:54 +0000 |
commit | 1a6b693bc5cc91430dc16af6b735dbf051aab8bc (patch) | |
tree | fa681171eb789ca36e3515ec5b2815562a7ecb1a /print | |
parent | 57edc6817e948ba9a40196b401710373771f2bf2 (diff) | |
download | pkgsrc-1a6b693bc5cc91430dc16af6b735dbf051aab8bc.tar.gz |
Make sure we build with gnutls on Darwin, too, instead of the native
ssl libraries. The latter does not work well with older
(Apple-desupported) Darwin versions.
Diffstat (limited to 'print')
-rw-r--r-- | print/cups-base/Makefile | 6 | ||||
-rw-r--r-- | print/libcups/Makefile | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/print/cups-base/Makefile b/print/cups-base/Makefile index 250ce336605..10c706efce9 100644 --- a/print/cups-base/Makefile +++ b/print/cups-base/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.36 2020/05/26 08:36:55 triaxx Exp $ +# $NetBSD: Makefile,v 1.37 2020/08/11 12:40:54 hauke Exp $ .include "../../print/cups/Makefile.common" PKGNAME= cups-base-${CUPS_VERS} -PKGREVISION= 4 +PKGREVISION= 5 MASTER_SITES= ${MASTER_SITE_GITHUB:=apple/} MAINTAINER= sbd@NetBSD.org @@ -33,6 +33,8 @@ CONFIGURE_ARGS+= --with-system-groups=${CUPS_SYSTEM_GROUPS:Q} CONFIGURE_ARGS+= --with-exe-file-perm=0755 CONFIGURE_ARGS+= --enable-libpaper CONFIGURE_ARGS+= --enable-ssl +CONFIGURE_ARGS+= --enable-gnutls +CONFIGURE_ARGS+= --disable-cdsassl CONFIGURE_ARGS+= --without-bundledir CONFIGURE_ARGS+= --without-icondir CONFIGURE_ARGS+= --without-menudir diff --git a/print/libcups/Makefile b/print/libcups/Makefile index 6c617a78e4d..70c7f19c21d 100644 --- a/print/libcups/Makefile +++ b/print/libcups/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.4 2020/05/26 08:36:56 triaxx Exp $ +# $NetBSD: Makefile,v 1.5 2020/08/11 12:40:54 hauke Exp $ .include "../../print/cups/Makefile.common" PKGNAME= libcups-${CUPS_VERS} -PKGREVISION= 3 +PKGREVISION= 4 MASTER_SITES= ${MASTER_SITE_GITHUB:=apple/} MAINTAINER= sbd@NetBSD.org @@ -33,6 +33,8 @@ CONFIGURE_ARGS+= --with-serverbindir=${PREFIX}/libexec/cups CONFIGURE_ARGS+= --with-components=libcups CONFIGURE_ARGS+= --enable-libpaper CONFIGURE_ARGS+= --enable-ssl +CONFIGURE_ARGS+= --enable-gnutls +CONFIGURE_ARGS+= --disable-cdsassl CONFIGURE_ARGS+= --with-exe-file-perm=0755 CONFIGURE_ENV+= DSOFLAGS=${LDFLAGS:M*:Q} |