diff options
author | Johan van Selst <johans@FreeBSD.org> | 2016-11-12 13:57:46 +0000 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2016-11-12 13:57:46 +0000 |
commit | 3e4712e743cd76a52c7980fc58f2dbe9c49736ff (patch) | |
tree | e4b11f05ab4820a5b9128a4f01a9a54b37f99ca3 /security | |
parent | 647710051fc6a0b8f06310fe1c063fbe67ae3166 (diff) |
Use ONLY_FOR_ARCHS. It is unlikely other archs will be supported in the future.
Notes
Notes:
svn path=/head/; revision=425954
Diffstat (limited to 'security')
-rw-r--r-- | security/nacl/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/security/nacl/Makefile b/security/nacl/Makefile index a4f6339b71f7..5c9b192d1107 100644 --- a/security/nacl/Makefile +++ b/security/nacl/Makefile @@ -7,7 +7,7 @@ PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://hyperelliptic.org/nacl/ -MAINTAINER= johans@FreeBSD.org +MAINTAINER= johans@FreeBSD.org COMMENT= High speed cryptography library USES= tar:bzip2 @@ -15,14 +15,10 @@ ALL_TARGET= do USE_BINUTILS= yes MAKE_JOBS_UNSAFE= yes -BROKEN_aarch64= Does not build: /proc/cpuinfo: No such file or directory -BROKEN_mips64= Does not build: /proc/cpuinfo: No such file or directory -BROKEN_powerpc= Does not compile on powerpc -BROKEN_powerpc64= Does not build -BROKEN_sparc64= Does not compile on sparc64 +ONLY_FOR_ARCHS= i386 amd64 HOSTNAME_CMD?= /bin/hostname -s -MYARCH= ${ARCH:S/i386/x86/:S/powerpc/ppc/} +MYARCH= ${ARCH:S/i386/x86/} post-patch: @${REINPLACE_CMD} -i -e "s|$$| -fPIC|" ${WRKSRC}/okcompilers/c |