Index: head/net/kea/Makefile =================================================================== --- head/net/kea/Makefile (revision 396726) +++ head/net/kea/Makefile (revision 396727) @@ -1,51 +1,52 @@ # $FreeBSD$ PORTNAME= kea PORTVERSION= 0.9.2 CATEGORIES= net ipv6 MASTER_SITES= ISC MASTER_SITE_SUBDIR= kea/${PORTVERSION} MAINTAINER= hrs@FreeBSD.org COMMENT= Alternative DHCP implementation by ISC LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= liblog4cplus.so:${PORTSDIR}/devel/log4cplus \ libboost_system.so:${PORTSDIR}/devel/boost-libs USES= libtool python:3.1+ autoreconf USE_LDCONFIG= yes USE_OPENSSL= yes USE_RC_SUBR= ${PORTNAME} 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 \ kea-messages.html \ examples OPTIONS_DEFINE= DOCS MYSQL PGSQL OPTIONS_DEFAULT=DOCS DOCS_MAKE_ARGS_OFF= \ INSTALL_STRIP_PROGRAM="${WRKSRC}/install-sh -c -s" \ INSTALL_STRIP_FLAG="-s" \ INSTALL_PROGRAM_ENV="STRIPPROG=${STRIP}" DOCS_INSTALL_TARGET_OFF= \ install-exec-am \ install-pkgconfigDATA \ install-pkgincludeHEADERS MYSQL_USE= MYSQL=client MYSQL_CONFIGURE_ARGS= --with-dhcp-mysql=${LOCALBASE}/bin MYSQL_CONFIGURE_ARGS_OFF= --without-dhcp-mysql PGSQL_USES= pgsql WANT_PGSQL= client PGSQL_CONFIGURE_ARGS= --with-dhcp-pgsql=${LOCALBASE}/bin PGSQL_CONFIGURE_ARGS_OFF= --without-dhcp-pgsql .include Index: head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h =================================================================== --- head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h (nonexistent) +++ head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h (revision 396727) @@ -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() + ) + {} Property changes on: head/net/kea/files/patch-src-lib-util-encode-base16_from_binary.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h =================================================================== --- head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h (nonexistent) +++ head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h (revision 396727) @@ -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() + ) + {} Property changes on: head/net/kea/files/patch-src-lib-util-encode-base32hex_from_binary.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h =================================================================== --- head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h (nonexistent) +++ head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h (revision 396727) @@ -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() + ) + {} Property changes on: head/net/kea/files/patch-src-lib-util-encode-binary_from_base16.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h =================================================================== --- head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h (nonexistent) +++ head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h (revision 396727) @@ -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() + ) + {} Property changes on: head/net/kea/files/patch-src-lib-util-encode-binary_from_base32hex.h ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property