svn commit: r478229 - head/devel/hapy
Tobias Kortkamp
tobik at FreeBSD.org
Mon Aug 27 17:07:27 UTC 2018
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 at 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'"
More information about the svn-ports-all
mailing list