diff options
author | mat <mat@FreeBSD.org> | 2014-12-16 20:40:37 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2014-12-16 20:40:37 +0800 |
commit | 396e7c94ab55997ff387c8ee80f8e56bd74faae6 (patch) | |
tree | b33744bfcfcb2f120d2e8e63127a2bd28c4e9183 /www | |
parent | cc40831c868c34d68438a3d8a80f6fc8940314ac (diff) | |
download | freebsd-ports-gnome-396e7c94ab55997ff387c8ee80f8e56bd74faae6.tar.gz freebsd-ports-gnome-396e7c94ab55997ff387c8ee80f8e56bd74faae6.tar.zst freebsd-ports-gnome-396e7c94ab55997ff387c8ee80f8e56bd74faae6.zip |
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
Diffstat (limited to 'www')
-rw-r--r-- | www/nghttp2/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/www/nghttp2/Makefile b/www/nghttp2/Makefile index 58d059e9609c..79d4030a678b 100644 --- a/www/nghttp2/Makefile +++ b/www/nghttp2/Makefile @@ -52,6 +52,8 @@ HPACK_LIB_DEPENDS= libjansson.so:${PORTSDIR}/devel/jansson .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 |