Date: Tue, 16 Dec 2014 12:40:38 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r374801 - head/www/nghttp2 Message-ID: <201412161240.sBGCec45063618@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Tue Dec 16 12:40:37 2014 New Revision: 374801 URL: https://svnweb.freebsd.org/changeset/ports/374801 QAT: https://qat.redports.org/buildarchive/r374801/ Log: Does not build < 10.0 even if WITH_OPENSSL_PORT: First errors are: CXX ssl.o ssl.cc:29:10: fatal error: 'mutex' file not found #include <mutex> ^ In file included from http2.cc:25: ./http2.h:43:19: error: no member named 'move' in namespace 'std' : name(std::move(name)), value(std::move(value)), no_index(no_index) {} ~~~~~^ Sponsored by: Absolight Modified: head/www/nghttp2/Makefile Modified: head/www/nghttp2/Makefile ============================================================================== --- head/www/nghttp2/Makefile Tue Dec 16 12:06:40 2014 (r374800) +++ head/www/nghttp2/Makefile Tue Dec 16 12:40:37 2014 (r374801) @@ -52,6 +52,8 @@ HPACK_LIB_DEPENDS= libjansson.so:${PORTS .if ${OSVERSION} < 1000000 && !defined(WITH_OPENSSL_PORT) IGNORE= nghttp2 requires OpenSSL 1.0.1+ +.elif defined(WITH_OPENSSL_PORT) +BROKEN= Does not build .endif .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1000000
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412161240.sBGCec45063618>