From owner-svn-ports-all@freebsd.org Sun May 1 07:21:57 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F9D1B28917; Sun, 1 May 2016 07:21:57 +0000 (UTC) (envelope-from flo@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 mx1.freebsd.org (Postfix) with ESMTPS id 6CF171F2E; Sun, 1 May 2016 07:21:57 +0000 (UTC) (envelope-from flo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u417LuM9053593; Sun, 1 May 2016 07:21:56 GMT (envelope-from flo@FreeBSD.org) Received: (from flo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u417LuVL053591; Sun, 1 May 2016 07:21:56 GMT (envelope-from flo@FreeBSD.org) Message-Id: <201605010721.u417LuVL053591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: flo set sender to flo@FreeBSD.org using -f From: Florian Smeets Date: Sun, 1 May 2016 07:21:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414388 - in head/textproc/wbxml2: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 May 2016 07:21:57 -0000 Author: flo Date: Sun May 1 07:21:56 2016 New Revision: 414388 URL: https://svnweb.freebsd.org/changeset/ports/414388 Log: Fix the build when libcheck is installed. The switch to turn the detection off doesn't work, so remove the part from the Makefile. PR: 209060 Reported by: dewayne@heuristicsystems.com.au, w.schwarzenfeld@aon.at, Zhang Huangbin Modified: head/textproc/wbxml2/Makefile head/textproc/wbxml2/files/patch-CMakeLists.txt Modified: head/textproc/wbxml2/Makefile ============================================================================== --- head/textproc/wbxml2/Makefile Sun May 1 06:06:02 2016 (r414387) +++ head/textproc/wbxml2/Makefile Sun May 1 07:21:56 2016 (r414388) @@ -3,6 +3,7 @@ PORTNAME= wbxml2 PORTVERSION= 0.11.4 +PORTREVISION= 1 CATEGORIES= textproc devel MASTER_SITES= SF/libwbxml/libwbxml/${PORTVERSION} DISTNAME= libwbxml-${PORTVERSION} Modified: head/textproc/wbxml2/files/patch-CMakeLists.txt ============================================================================== --- head/textproc/wbxml2/files/patch-CMakeLists.txt Sun May 1 06:06:02 2016 (r414387) +++ head/textproc/wbxml2/files/patch-CMakeLists.txt Sun May 1 07:21:56 2016 (r414388) @@ -18,3 +18,10 @@ IF( ENABLE_INSTALL_DOC ) ADD_DOCUMENTATION( TEXT FILE ${CMAKE_SOURCE_DIR}/BUGS ) ADD_DOCUMENTATION( TEXT FILE ${CMAKE_SOURCE_DIR}/ChangeLog ) +@@ -260,6 +260,3 @@ INCLUDE( CPack ) + ### CTest ######################################## + + ADD_SUBDIRECTORY( test/tools ) +-IF(CHECK_FOUND) +- ADD_SUBDIRECTORY( test/api ) +-ENDIF(CHECK_FOUND)