From owner-svn-ports-all@freebsd.org Wed Jul 26 17:02:24 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 004A7DAA981; Wed, 26 Jul 2017 17:02:23 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 04FF36CA19; Wed, 26 Jul 2017 17:02:22 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6QH2LjE086124; Wed, 26 Jul 2017 17:02:21 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6QH2LDF086123; Wed, 26 Jul 2017 17:02:21 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201707261702.v6QH2LDF086123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 26 Jul 2017 17:02:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446666 - head/devel/clanlib X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/devel/clanlib X-SVN-Commit-Revision: 446666 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 26 Jul 2017 17:02:24 -0000 Author: jbeich Date: Wed Jul 26 17:02:21 2017 New Revision: 446666 URL: https://svnweb.freebsd.org/changeset/ports/446666 Log: 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 : hash ^ ~~~~~~~~~~~ ../../Sources/API/App/../Core/Text/string_types.h:64:27: error: unknown template name 'hash' class hash : hash ^ ../../Sources/API/App/../Core/Text/string_types.h:69:16: error: expected '(' for function-style cast or type construction return hash::operator()(keyval.c_str()); ~~~~^ ../../Sources/API/App/../Core/Text/string_types.h:69:17: error: expected expression return hash::operator()(keyval.c_str()); ^ 4 errors generated. Pointy hat to: jbeich Modified: head/devel/clanlib/Makefile (contents, props changed) Modified: head/devel/clanlib/Makefile ============================================================================== --- head/devel/clanlib/Makefile Wed Jul 26 17:02:15 2017 (r446665) +++ head/devel/clanlib/Makefile Wed Jul 26 17:02:21 2017 (r446666) @@ -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