From owner-svn-ports-head@freebsd.org Wed Jul 11 11:00:31 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 07319102C81D; Wed, 11 Jul 2018 11:00:31 +0000 (UTC) (envelope-from jbeich@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 AD9F18AE88; Wed, 11 Jul 2018 11:00:30 +0000 (UTC) (envelope-from jbeich@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 8F93A11CBB; Wed, 11 Jul 2018 11:00:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6BB0UHg033629; Wed, 11 Jul 2018 11:00:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6BB0U1U033628; Wed, 11 Jul 2018 11:00:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201807111100.w6BB0U1U033628@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 11 Jul 2018 11:00:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474435 - head/net/libcmis/files X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/net/libcmis/files X-SVN-Commit-Revision: 474435 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: Wed, 11 Jul 2018 11:00:31 -0000 Author: jbeich Date: Wed Jul 11 11:00:30 2018 New Revision: 474435 URL: https://svnweb.freebsd.org/changeset/ports/474435 Log: net/libcmis: unbreak with boost 1.68 xml-utils.cxx:34:10: fatal error: 'boost/uuid/sha1.hpp' file not found #include ^~~~~~~~~~~~~~~~~~~~~ PR: 229569 Added: head/net/libcmis/files/patch-src_libcmis_xml-utils.cxx (contents, props changed) Added: head/net/libcmis/files/patch-src_libcmis_xml-utils.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/libcmis/files/patch-src_libcmis_xml-utils.cxx Wed Jul 11 11:00:30 2018 (r474435) @@ -0,0 +1,21 @@ +After https://github.com/boostorg/uuid/commit/33da3e2a5b87 build fails: + +xml-utils.cxx:34:10: fatal error: 'boost/uuid/sha1.hpp' file not found +#include + ^~~~~~~~~~~~~~~~~~~~~ + +--- src/libcmis/xml-utils.cxx.orig 2016-03-01 16:14:26 UTC ++++ src/libcmis/xml-utils.cxx +@@ -31,7 +31,12 @@ + #include + #include + ++#include ++#if (BOOST_VERSION >= 106600) ++#include ++#else + #include ++#endif + #include + + #include "xml-utils.hxx"