From owner-svn-ports-head@freebsd.org Fri Sep 11 23:50:57 2015 Return-Path: Delivered-To: svn-ports-head@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 C64E2A02C72; Fri, 11 Sep 2015 23:50:57 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::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 A6F671C37; Fri, 11 Sep 2015 23:50:57 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8BNovgH014722; Fri, 11 Sep 2015 23:50:57 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8BNoufK014717; Fri, 11 Sep 2015 23:50:56 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201509112350.t8BNoufK014717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 11 Sep 2015 23:50:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r396727 - in head/net/kea: . 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-head@freebsd.org X-Mailman-Version: 2.1.20 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: Fri, 11 Sep 2015 23:50:57 -0000 Author: hrs Date: Fri Sep 11 23:50:55 2015 New Revision: 396727 URL: https://svnweb.freebsd.org/changeset/ports/396727 Log: - Temporarily disable -Werror to fix build on 11.x. Boost < 1.59.0 has a lot of unused local typedefs while the newer versions use __attribulte__((unused)) to suppress the warning. - Add patches to remove BOOST_PFTO_WRAPPER(). This macro is obsolete in the newer versions of Boost. Added: head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h (contents, props changed) head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h (contents, props changed) head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h (contents, props changed) head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h (contents, props changed) Modified: head/net/kea/Makefile Modified: head/net/kea/Makefile ============================================================================== --- head/net/kea/Makefile Fri Sep 11 23:47:31 2015 (r396726) +++ head/net/kea/Makefile Fri Sep 11 23:50:55 2015 (r396727) @@ -23,7 +23,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-silent-rules \ --with-openssl=${OPENSSLBASE} \ --with-log4cplus=${LOCALBASE} \ - --with-boost-include=${LOCALBASE}/include + --with-boost-include=${LOCALBASE}/include \ + --without-werror INSTALL_TARGET= install-strip PORTDOCS= AUTHORS COPYING ChangeLog README \ kea-guide.css kea-guide.html kea-guide.txt \ Added: head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h Fri Sep 11 23:50:55 2015 (r396727) @@ -0,0 +1,14 @@ +--- src/lib/util/encode/base16_from_binary.h.orig 2015-09-12 06:07:02.929641000 +0900 ++++ src/lib/util/encode/base16_from_binary.h 2015-09-12 06:07:28.903859000 +0900 +@@ -85,9 +85,9 @@ + public: + // make composable by using templated constructor + template +- base16_from_binary(BOOST_PFTO_WRAPPER(T) start) : ++ base16_from_binary(T start) : + super_t( +- Base(BOOST_MAKE_PFTO_WRAPPER(static_cast(start))), ++ Base(static_cast(start)), + detail::from_4_bit() + ) + {} Added: head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h Fri Sep 11 23:50:55 2015 (r396727) @@ -0,0 +1,14 @@ +--- src/lib/util/encode/base32hex_from_binary.h.orig 2015-09-12 06:08:07.415328000 +0900 ++++ src/lib/util/encode/base32hex_from_binary.h 2015-09-12 06:08:28.438126000 +0900 +@@ -87,9 +87,9 @@ + public: + // make composable by using templated constructor + template +- base32hex_from_binary(BOOST_PFTO_WRAPPER(T) start) : ++ base32hex_from_binary(T start) : + super_t( +- Base(BOOST_MAKE_PFTO_WRAPPER(static_cast(start))), ++ Base(static_cast(start)), + detail::from_5_bit() + ) + {} Added: head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h Fri Sep 11 23:50:55 2015 (r396727) @@ -0,0 +1,14 @@ +--- src/lib/util/encode/binary_from_base16.h.orig 2015-09-12 06:08:57.358126000 +0900 ++++ src/lib/util/encode/binary_from_base16.h 2015-09-12 06:09:12.997499000 +0900 +@@ -93,9 +93,9 @@ + public: + // make composable by using templated constructor + template +- binary_from_base16(BOOST_PFTO_WRAPPER(T) start) : ++ binary_from_base16(T start) : + super_t( +- Base(BOOST_MAKE_PFTO_WRAPPER(static_cast(start))), ++ Base(static_cast(start)), + detail::to_4_bit() + ) + {} Added: head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h Fri Sep 11 23:50:55 2015 (r396727) @@ -0,0 +1,14 @@ +--- src/lib/util/encode/binary_from_base32hex.h.orig 2015-09-12 06:05:44.329389000 +0900 ++++ src/lib/util/encode/binary_from_base32hex.h 2015-09-12 06:06:24.217165000 +0900 +@@ -96,9 +96,9 @@ + public: + // make composable by using templated constructor + template +- binary_from_base32hex(BOOST_PFTO_WRAPPER(T) start) : ++ binary_from_base32hex(T start) : + super_t( +- Base(BOOST_MAKE_PFTO_WRAPPER(static_cast(start))), ++ Base(static_cast(start)), + detail::to_5_bit() + ) + {}