diff options
-rw-r--r-- | math/gsl/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/gsl/Makefile b/math/gsl/Makefile index 558da29aee96..35016c634dbd 100644 --- a/math/gsl/Makefile +++ b/math/gsl/Makefile @@ -24,8 +24,14 @@ INFO= gsl-ref CORELIMIT?= /usr/bin/limits -Sc 0 .endif +.include <bsd.port.pre.mk> + +.if ${ARCH} == powerpc64 +USE_GCC= any +.endif + check regression-test test: build @cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${CORELIMIT} ${MAKE_CMD} \ ${MAKE_ARGS} check -.include <bsd.port.mk> +.include <bsd.port.post.mk> |