diff options
author | yuri <yuri@FreeBSD.org> | 2018-09-30 09:56:16 +0800 |
---|---|---|
committer | yuri <yuri@FreeBSD.org> | 2018-09-30 09:56:16 +0800 |
commit | a12d7f19cc9a2b36539b5487da31762af2df653f (patch) | |
tree | 2f5ce6956d7acfc410562d9adaed1da6578750f2 /security | |
parent | 176ac30c5a4944e523f484cbca8fd0344fd05fe1 (diff) | |
download | freebsd-ports-gnome-a12d7f19cc9a2b36539b5487da31762af2df653f.tar.gz freebsd-ports-gnome-a12d7f19cc9a2b36539b5487da31762af2df653f.tar.zst freebsd-ports-gnome-a12d7f19cc9a2b36539b5487da31762af2df653f.zip |
security/tor-devel: Fix build with mips64, powerpc64 and sparc64
Port changes:
* Add USES=compiler:c11
* Add USE_CSTD=gnu99
PR: 231779
Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> (initial version)
Diffstat (limited to 'security')
-rw-r--r-- | security/tor-devel/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/security/tor-devel/Makefile b/security/tor-devel/Makefile index 696221a5ca0b..dc90ce83ce90 100644 --- a/security/tor-devel/Makefile +++ b/security/tor-devel/Makefile @@ -15,11 +15,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}" |