diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-11-07 12:14:56 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2021-11-07 12:14:56 +0000 |
commit | de86a3033c90d68ce7ecab8c88532269603c8c1d (patch) | |
tree | ea63d6bf6c5d87162b8c2c9fdffd1bf76e4498ba | |
parent | 39be1279f16c6787a126a751bc58a1f4b767eeb5 (diff) |
audio/inscore: fix build on powerpc64
Doesn't correctly detect endianness:
In file included from /wrkdirs/usr/ports/audio/inscore/work/inscore-128/lib/oscpack/osc/OscOutboundPacketStream.cpp:41:
/wrkdirs/usr/ports/audio/inscore/work/inscore-128/lib/oscpack/osc/OscHostEndianness.h:64:2: error: please edit OSCHostEndianness.h to configure endianness
-rw-r--r-- | audio/inscore/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/inscore/Makefile b/audio/inscore/Makefile index cd6d8fe2ef52..3fa27b4277d9 100644 --- a/audio/inscore/Makefile +++ b/audio/inscore/Makefile @@ -25,6 +25,7 @@ GH_TUPLE= grame-cncm:guidolib:3cf3d88:guidolib/modules/guidolib # this uses some CMAKE_SOURCE_PATH= ${WRKSRC}/build CXXFLAGS+= -I${LOCALBASE}/include/guido -I${LOCALBASE}/include/guidoar +CXXFLAGS_powerpc64= -DOSC_HOST_BIG_ENDIAN OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_DEFAULT= DOCS EXAMPLES |