Date: Fri, 21 Jun 2019 16:13:26 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504803 - head/games/brikx Message-ID: <201906211613.x5LGDQ2V045802@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Fri Jun 21 16:13:26 2019 New Revision: 504803 URL: https://svnweb.freebsd.org/changeset/ports/504803 Log: - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard Modified: head/games/brikx/Makefile Modified: head/games/brikx/Makefile ============================================================================== --- head/games/brikx/Makefile Fri Jun 21 15:57:28 2019 (r504802) +++ head/games/brikx/Makefile Fri Jun 21 16:13:26 2019 (r504803) @@ -12,13 +12,12 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= amdmi3@FreeBSD.org COMMENT= Puzzle game - remove all tiles from the table -USES= compiler:c++11-lang tar:bzip2 +USES= tar:bzip2 GNU_CONFIGURE= yes USE_SDL= sdl mixer image ttf +USE_CXXSTD= c++98 WRKSRC= ${WRKDIR}/${PORTNAME} - -CXXFLAGS+= -Wno-reserved-user-defined-literal PLIST_FILES= bin/${PORTNAME} PORTDATA= *
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906211613.x5LGDQ2V045802>