Date: Tue, 13 Apr 2021 07:11:02 GMT From: =?utf-8?B?RmVybmFuZG8gQXBlc3RlZ3XDrWE=?= <fernape@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org Subject: git: fa9cbe85e2cf - 2021Q2 - textproc/iksemel: fix build when openssl is installed. Message-ID: <202104130711.13D7B2kx037891@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch 2021Q2 has been updated by fernape: URL: https://cgit.FreeBSD.org/ports/commit/?id=fa9cbe85e2cf34975f4a36dabbe87916e800c483 commit fa9cbe85e2cf34975f4a36dabbe87916e800c483 Author: Fernando ApesteguĂa <fernape@FreeBSD.org> AuthorDate: 2021-04-13 07:00:03 +0000 Commit: Fernando ApesteguĂa <fernape@FreeBSD.org> CommitDate: 2021-04-13 07:07:25 +0000 textproc/iksemel: fix build when openssl is installed. This port does not build when openssl is installed. Disable it explicitely in the configure. PR: 254296 Reported by: dym@afalina.od.ua Tested by: felix@palmen-it.de newton.ja.terry@gmail.com MFH: 2021Q2 build fix (cherry picked from commit 0a4dd56b6717f75db19a03d8a7920783e256cd0a) --- textproc/iksemel/Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/textproc/iksemel/Makefile b/textproc/iksemel/Makefile index 68f9ff396bd8..e6ed1893fb2b 100644 --- a/textproc/iksemel/Makefile +++ b/textproc/iksemel/Makefile @@ -12,17 +12,21 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgnutls.so:security/gnutls +USES= autoreconf libtool makeinfo pathfix pkgconfig + USE_GITHUB= yes GH_ACCOUNT= meduketto GH_TAGNAME= 978b733 -USES= autoreconf libtool makeinfo pathfix pkgconfig +USE_LDCONFIG= yes + GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-gnutls=yes \ + --without-openssl \ --disable-python CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -USE_LDCONFIG= yes + INSTALL_TARGET= install-strip INFO= iksemel
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202104130711.13D7B2kx037891>