diff options
author | jbeich <jbeich@FreeBSD.org> | 2017-07-27 01:02:21 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2017-07-27 01:02:21 +0800 |
commit | 93034d380bc50998a179eaa8a98abed3e06b6e89 (patch) | |
tree | 3bde636a28b43d652fd3ae7e20b3787a0bc4c681 | |
parent | e0cc8c0bbfe9641b68b7d4055f0d43ec454e79c2 (diff) | |
download | freebsd-ports-gnome-93034d380bc50998a179eaa8a98abed3e06b6e89.tar.gz freebsd-ports-gnome-93034d380bc50998a179eaa8a98abed3e06b6e89.tar.zst freebsd-ports-gnome-93034d380bc50998a179eaa8a98abed3e06b6e89.zip |
devel/clanlib: ignore libstdc++ 4.2 after r446644
In file included from Unix/clanapp.cpp:32:
In file included from ../../Sources/API/App/clanapp.h:35:
../../Sources/API/App/../Core/Text/string_types.h:64:9: error: explicit specialization of
non-template class 'hash'
class hash<CL_String> : hash<const CL_String::char_type*>
^ ~~~~~~~~~~~
../../Sources/API/App/../Core/Text/string_types.h:64:27: error: unknown template name 'hash'
class hash<CL_String> : hash<const CL_String::char_type*>
^
../../Sources/API/App/../Core/Text/string_types.h:69:16: error: expected '(' for function-style cast
or type construction
return hash<const CL_String::char_type*>::operator()(keyval.c_str());
~~~~^
../../Sources/API/App/../Core/Text/string_types.h:69:17: error: expected expression
return hash<const CL_String::char_type*>::operator()(keyval.c_str());
^
4 errors generated.
Pointy hat to: jbeich
-rw-r--r-- | devel/clanlib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/clanlib/Makefile b/devel/clanlib/Makefile index c8c7d6d17984..720f782b7158 100644 --- a/devel/clanlib/Makefile +++ b/devel/clanlib/Makefile @@ -20,7 +20,7 @@ LIB_DEPENDS= libpng.so:graphics/png \ libfontconfig.so:x11-fonts/fontconfig \ libpcre.so:devel/pcre -USES= compiler:c++0x execinfo gmake jpeg libtool localbase:ldflags \ +USES= compiler:c++11-lib execinfo gmake jpeg libtool localbase:ldflags \ pathfix pkgconfig sqlite tar:tgz USE_XORG= x11 USE_LDCONFIG= yes |