security/poly1305aes: fix build on powerpc*

Same error as on e.g. aarch64 with clang, builds with GCC.

Other architectures untested.
This commit is contained in:
Piotr Kubaj 2021-10-27 02:44:37 +00:00
parent ab4c63bf00
commit 8c93e3ce04

View file

@ -22,8 +22,10 @@ CC+= ${CPPFLAGS} ${CFLAGS} ${LDFLAGS}
.include <bsd.port.pre.mk>
.if ${ARCH:Mpowerpc*}
USE_GCC= yes
.elif ${ARCH} == "i386"
pre-build:
.if ${ARCH} == "i386"
@${ECHO_CMD} "ppro" > ${WRKSRC}/poly1305aes.impl
.endif