Date: Sat, 14 Sep 2013 01:16:09 +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: r327205 - head/games/fishsupper Message-ID: <201309140116.r8E1G9om017581@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Sat Sep 14 01:16:08 2013 New Revision: 327205 URL: http://svnweb.freebsd.org/changeset/ports/327205 Log: Fix build with clang/libc++ Modified: head/games/fishsupper/Makefile Modified: head/games/fishsupper/Makefile ============================================================================== --- head/games/fishsupper/Makefile Sat Sep 14 01:15:56 2013 (r327204) +++ head/games/fishsupper/Makefile Sat Sep 14 01:16:08 2013 (r327205) @@ -31,6 +31,11 @@ DESKTOP_ENTRIES="Fish Supper" \ .include <bsd.port.options.mk> +.if ${OSVERSION} > 1000000 +post-patch: + @${REINPLACE_CMD} -e 's|std::tr1::shared_ptr|std::shared_ptr|g' ${WRKSRC}/src/*.h ${WRKSRC}/src/*.cpp +.endif + post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309140116.r8E1G9om017581>