svn commit: r374801 - head/www/nghttp2
Mathieu Arnold
mat at FreeBSD.org
Tue Dec 16 12:40:38 UTC 2014
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
More information about the svn-ports-all
mailing list