From owner-svn-ports-head@freebsd.org Thu Oct 18 12:19:58 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FF7210DB7FD; Thu, 18 Oct 2018 12:19:58 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4493489F49; Thu, 18 Oct 2018 12:19:58 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F3B81FB40; Thu, 18 Oct 2018 12:19:58 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9ICJwSZ045889; Thu, 18 Oct 2018 12:19:58 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9ICJwJt045888; Thu, 18 Oct 2018 12:19:58 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201810181219.w9ICJwJt045888@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Thu, 18 Oct 2018 12:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482342 - head/textproc/kf5-syntax-highlighting X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/textproc/kf5-syntax-highlighting X-SVN-Commit-Revision: 482342 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2018 12:19:58 -0000 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