svn commit: r424365 - head/security/gpgme

Jason E. Hale jhale at FreeBSD.org
Fri Oct 21 00:05:59 UTC 2016


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"


More information about the svn-ports-head mailing list