Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Aug 2018 17:07:26 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r478229 - head/devel/hapy
Message-ID:  <201808271707.w7RH7Qgi009541@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tobik
Date: Mon Aug 27 17:07:26 2018
New Revision: 478229
URL: https://svnweb.freebsd.org/changeset/ports/478229

Log:
  devel/hapy: Fix build with Clang 6
  
  In file included from Algorithm.cc:4:
  In file included from ../src/include/Hapy/Algorithm.h:6:
  In file included from ../src/include/Hapy/Result.h:7:
  In file included from ../src/include/Hapy/Pree.h:9:
  In file included from ../src/include/Hapy/PreeKids.h:7:
  ../src/include/Hapy/Iterator.h:22:10: error: no template named 'bidirectional_iterator' in namespace 'std'; did you mean 'std_bidirectional_iterator'?
                  public std::bidirectional_iterator<ValueT, DiffT> {
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                         std_bidirectional_iterator
  
  etc.
  
  http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/hapy-0.0.8_1.log
  
  PR:		230907
  Submitted by:	tobik
  Approved by:	Alex Rousskov <rousskov@measurement-factory.com> (maintainer)

Modified:
  head/devel/hapy/Makefile

Modified: head/devel/hapy/Makefile
==============================================================================
--- head/devel/hapy/Makefile	Mon Aug 27 17:04:08 2018	(r478228)
+++ head/devel/hapy/Makefile	Mon Aug 27 17:07:26 2018	(r478229)
@@ -14,6 +14,7 @@ COMMENT=	Runtime parser generator
 GNU_CONFIGURE=	yes
 INSTALL_TARGET=	install-strip
 USES=		libtool
+USE_CXXSTD=	c++98
 
 post-build:
 	@${ECHO_MSG} "Consider running 'make check' before 'make install'"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808271707.w7RH7Qgi009541>