diff options
| author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-01-26 00:05:55 +0000 |
|---|---|---|
| committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-01-26 00:05:55 +0000 |
| commit | 0e3bf07e2ced19b9f43100288f5733eed7ff08de (patch) | |
| tree | 482b96d3a632bf76ff246a48cddab2c8686de48e | |
| parent | audio/jack: fix build on powerpc and powerpc64 (diff) | |
audio/jack: fix build on powerpc64le
Same issue as on powerpc and powerpc64.
| -rw-r--r-- | audio/jack/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile index c655e2d00868..25a0b22e8c03 100644 --- a/audio/jack/Makefile +++ b/audio/jack/Makefile @@ -51,7 +51,7 @@ PROFILING_CONFIGURE_ON= --profile .include <bsd.port.options.mk> -.if ${ARCH} == powerpc || ${ARCH} == powerpc64 +.if ${ARCH} == powerpc || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le USES+= compiler:gcc-c++11-lib .else USES+= compiler:c11 |
