svn commit: r480932 - head/security/tor

Yuri Victorovich yuri at FreeBSD.org
Sun Sep 30 01:55:05 UTC 2018


Author: yuri
Date: Sun Sep 30 01:55:03 2018
New Revision: 480932
URL: https://svnweb.freebsd.org/changeset/ports/480932

Log:
  security/tor: Fix build with mips64, powerpc64 and sparc64
  
  Port changes:
  * Add USES=compiler:c11
  * Add USE_CSTD=gnu99
  
  Situation with MIPS isn't clear, Nathan <ndowens at yahoo.com> says that it works only after adding USES=autoreconf.
  The Tor Project should resolve this discrepancy that autoreconf alters the outcome: https://trac.torproject.org/projects/tor/ticket/27901
  
  PR:		231779
  Submitted by:	Piotr Kubaj <pkubaj at anongoth.pl> (initial version)

Modified:
  head/security/tor/Makefile

Modified: head/security/tor/Makefile
==============================================================================
--- head/security/tor/Makefile	Sat Sep 29 23:26:59 2018	(r480931)
+++ head/security/tor/Makefile	Sun Sep 30 01:55:03 2018	(r480932)
@@ -12,11 +12,9 @@ COMMENT=	Anonymizing overlay network for TCP
 LICENSE=	BSD3CLAUSE
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BROKEN_mips64=		does not build: error: Need a uint128_t implementation!
-BROKEN_powerpc64=	does not build: error: Need a uint128_t implementation!
-BROKEN_sparc64=		does not build: error: Need a uint128_t implementation!
+USES=		compiler:c11 cpe gmake pkgconfig # should be compiler:c99 or compiler:gnu99
+USE_CSTD=	gnu99 # until this bug report is closed: https://trac.torproject.org/projects/tor/ticket/27900
 
-USES=		cpe gmake pkgconfig
 CPE_VENDOR=	torproject
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-openssl-dir="${OPENSSLBASE}"


More information about the svn-ports-head mailing list