svn commit: r424365 - head/security/gpgme

Tijl Coosemans tijl at FreeBSD.org
Fri Oct 21 09:09:11 UTC 2016


On Fri, 21 Oct 2016 00:05:57 +0000 (UTC) "Jason E. Hale" <jhale at FreeBSD.org> wrote:
> Author: jhale
> Date: Fri Oct 21 00:05:57 2016
> New Revision: 424365
> URL: https://svnweb.freebsd.org/changeset/ports/424365
> 
> Log:
>   Really fix build on 9.x for the c++ and Qt5 bindings;
>   require libc++.
> 
> Modified:
>   head/security/gpgme/Makefile
> 
> Modified: head/security/gpgme/Makefile
> ==============================================================================
> --- head/security/gpgme/Makefile	Thu Oct 20 22:30:20 2016	(r424364)
> +++ head/security/gpgme/Makefile	Fri Oct 21 00:05:57 2016	(r424365)
> @@ -87,6 +87,12 @@ CONFLICTS_INSTALL=	py*-pyme-[0-9]*
>  .include <bsd.port.pre.mk>
>  
>  .if defined(SLAVEPORT)
> +.  if (${SLAVEPORT} == "cpp" || ${SLAVEPORT} == "qt5")
> +.    if ${OPSYS} == FreeBSD && ${OSVERSION} < 1001000
> +BUILD_DEPENDS+=	${LOCALBASE}/lib/c++/libstdc++.so:devel/libc++
> +CXXFLAGS+=	-stdlib=libc++ -I${LOCALBASE}/include/c++/v1
> +.    endif
> +.  endif
>  .  if ${SLAVEPORT} == "python"
>  .    if ${PYTHON_REL} >= 3000
>  CONFIGURE_ARGS+=--enable-languages="python3"

Didn't replacing USES=compiler:c++11-lang with USES=compiler:c++11-lib work?


More information about the svn-ports-head mailing list