Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 30 Sep 2018 01:55:04 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r480932 - head/security/tor
Message-ID:  <201809300155.w8U1t4SB080875@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809300155.w8U1t4SB080875>