Date: Sun, 24 Mar 2019 18:44:13 +0000 (UTC) From: Kurt Jaeger <pi@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r496769 - head/converters/wkhtmltopdf Message-ID: <201903241844.x2OIiD9p010280@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pi Date: Sun Mar 24 18:44:12 2019 New Revision: 496769 URL: https://svnweb.freebsd.org/changeset/ports/496769 Log: converters/wkhtmltopdf: unbreak with openssl111 1) Building the port with openssl from ports leads to an error: Error: /usr/local/bin/wkhtmltoimage is linked to /usr/local/lib/libssl.so.9 from security/openssl but it is not declared as a dependency 2) Building the port with openssl111 from ports does not fail any more. The Patch fixes both issues. PR: 236755 Submitted by: dinoex Modified: head/converters/wkhtmltopdf/Makefile Modified: head/converters/wkhtmltopdf/Makefile ============================================================================== --- head/converters/wkhtmltopdf/Makefile Sun Mar 24 18:43:27 2019 (r496768) +++ head/converters/wkhtmltopdf/Makefile Sun Mar 24 18:44:12 2019 (r496769) @@ -3,7 +3,7 @@ PORTNAME= wkhtmltopdf PORTVERSION= 0.12.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= converters MAINTAINER= pi@FreeBSD.org @@ -16,15 +16,13 @@ BROKEN_aarch64= fails to build: error: cast from poin BROKEN_armv6= fails to build: error: Not supported ARM architecture BROKEN_armv7= fails to build: error: invalid operand for instruction BROKEN_mips64= fails to link: undefined reference to __sync_add_and_fetch_4 -BROKEN_SSL= openssl111 -BROKEN_SSL_REASON_openssl111= member access into incomplete type 'SSL_CIPHER' (aka 'ssl_cipher_st') RUN_DEPENDS= webfonts>=0:x11-fonts/webfonts LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libpng.so:graphics/png -USES= compiler:c++11-lang gmake iconv jpeg perl5 pkgconfig ssl:build +USES= compiler:c++11-lang gmake iconv jpeg perl5 pkgconfig ssl USE_XORG= x11 xext xrender USE_PERL5= build USE_LDCONFIG= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903241844.x2OIiD9p010280>