Date: Thu, 27 Feb 2014 10:54:16 +0000 (UTC) From: Thierry Thomas <thierry@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r346315 - head/net-im/tox Message-ID: <201402271054.s1RAsGxb096871@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402271054.s1RAsGxb096871>