Date: Thu, 18 Oct 2018 12:19:58 +0000 (UTC) From: Adriaan de Groot <adridg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482342 - head/textproc/kf5-syntax-highlighting Message-ID: <201810181219.w9ICJwJt045888@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adridg Date: Thu Oct 18 12:19:57 2018 New Revision: 482342 URL: https://svnweb.freebsd.org/changeset/ports/482342 Log: Workaround textprof/kf5-syntax-hightlighting build failure. (library) Qt5Network crashes in the presence of VLANs. This terminates the build when the host build process runs applications that touch the network -- which happens during schema validation, which is done if the host has XmlPatters installed. Workaround by ignoring XmlPatterns. Underlying problem (Qt5Network and VLANs) has not been addressed. PR: 231402 Reported by: Ting-Wei Lan Modified: head/textproc/kf5-syntax-highlighting/Makefile Modified: head/textproc/kf5-syntax-highlighting/Makefile ============================================================================== --- head/textproc/kf5-syntax-highlighting/Makefile Thu Oct 18 11:49:51 2018 (r482341) +++ head/textproc/kf5-syntax-highlighting/Makefile Thu Oct 18 12:19:57 2018 (r482342) @@ -2,6 +2,7 @@ PORTNAME= syntax-highlighting DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= textproc kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,5 +12,7 @@ USES= cmake:outsource compiler:c++11-lib kde:5 perl5 USE_KDE= ecm USE_QT= buildtools_build core gui linguisttools_build \ network testlib qmake_build + +CMAKE_ARGS= -DCMAKE_DISABLE_FIND_PACKAGE_Qt5XmlPatterns=TRUE .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201810181219.w9ICJwJt045888>