diff options
author | mr <mr@FreeBSD.org> | 2005-04-19 20:38:05 +0800 |
---|---|---|
committer | mr <mr@FreeBSD.org> | 2005-04-19 20:38:05 +0800 |
commit | b719af3237e56a04aeae80c7374e24f6ae859432 (patch) | |
tree | b143f3ef2cb2e6c814b29bd6601b1eca0d47f72a | |
parent | a4235a64be9e2ddb3ac12160383d1817de732595 (diff) | |
download | freebsd-ports-gnome-b719af3237e56a04aeae80c7374e24f6ae859432.tar.gz freebsd-ports-gnome-b719af3237e56a04aeae80c7374e24f6ae859432.tar.zst freebsd-ports-gnome-b719af3237e56a04aeae80c7374e24f6ae859432.zip |
Just using --enable-gnutls doesn't seem to be sufficient for cups-base
to choose it in favour of the base openssl.
This kills cups-printing from inside firefox/mozilla.
Adding --disable-openssl seems to solve this.
Testet by: Stijn Hoop <stijn win.tue.nl>
-rw-r--r-- | print/cups/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/print/cups/Makefile.common b/print/cups/Makefile.common index 78374a23ccc5..52797a228bb8 100644 --- a/print/cups/Makefile.common +++ b/print/cups/Makefile.common @@ -78,7 +78,7 @@ CONFIGURE_ARGS+= --localstatedir=/var \ --with-rcdir=${CUPS_RCDIR} .if !defined(WITHOUT_GNUTLS) -CONFIGURE_ARGS+= --enable-gnutls +CONFIGURE_ARGS+= --enable-gnutls --disable-openssl LIB_DEPENDS+= gnutls-openssl.12:${PORTSDIR}/security/gnutls .endif |