svn commit: r446699 - head/www/anyterm

Raphael Kubo da Costa rakuco at FreeBSD.org
Wed Jul 26 21:44:39 UTC 2017


Author: rakuco
Date: Wed Jul 26 21:44:37 2017
New Revision: 446699
URL: https://svnweb.freebsd.org/changeset/ports/446699

Log:
  Force an older C++ standard than C++11 to build.
  
  This fixes the build with GCC >= 6, which use C++11 by default. This version of
  anyterm is not compatible with C++11.
  
  PR:		219296
  Approved by:	Douglas Thrift <douglas at douglasthrift.net>

Modified:
  head/www/anyterm/Makefile

Modified: head/www/anyterm/Makefile
==============================================================================
--- head/www/anyterm/Makefile	Wed Jul 26 21:30:02 2017	(r446698)
+++ head/www/anyterm/Makefile	Wed Jul 26 21:44:37 2017	(r446699)
@@ -28,6 +28,10 @@ ALL_TARGET=	default_target
 PLIST_FILES=	man/man1/anytermd.1.gz \
 		sbin/anytermd
 
+# Force the use of an older C++ standard; anyterm 1.1.29 is not compatible with
+# C++11.
+USE_CXXSTD=	gnu++03
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|/private/etc/apache2|${FILESDIR}|' \
 		${WRKSRC}/scripts/mimetype.sh


More information about the svn-ports-all mailing list