svn commit: r346315 - head/net-im/tox

Thierry Thomas thierry at FreeBSD.org
Thu Feb 27 10:54:16 UTC 2014


Author: thierry
Date: Thu Feb 27 10:54:16 2014
New Revision: 346315
URL: http://svnweb.freebsd.org/changeset/ports/346315
QAT: https://qat.redports.org/buildarchive/r346315/

Log:
  - A "not too old" compiler is required on FreeBSD < 10;
  
  - Mark BROKEN on FreeBSD < 10 and i386:
  /usr/local/lib/libsodium.so: undefined reference to `__stack_chk_fail_local'
  
  Reported by:	pkg-fallout

Modified:
  head/net-im/tox/Makefile

Modified: head/net-im/tox/Makefile
==============================================================================
--- head/net-im/tox/Makefile	Thu Feb 27 10:02:58 2014	(r346314)
+++ head/net-im/tox/Makefile	Thu Feb 27 10:54:16 2014	(r346315)
@@ -46,6 +46,11 @@ NACL_RUN_DEPENDS=	${LOCALBASE}/lib/libna
 
 .include <bsd.port.options.mk>
 
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
+USE_GCC=	yes
+BROKEN_i386=	`__stack_chk_fail_local' isn't defined
+.endif
+
 .if ${PORT_OPTIONS:MNACL}
 CONFIGURE_ARGS+=	--with-nacl-libs=${LOCALBASE}/lib
 .endif


More information about the svn-ports-all mailing list