diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-02-10 21:50:46 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-02-10 21:50:46 +0000 |
commit | bb24b8a158ad82acbe2abce4175fab1cffafa4a0 (patch) | |
tree | 74b364cbcccd29e6545eedc0be5ca8bdeb1ea788 /databases/memcached | |
parent | 2385bc4feaa745d7742adba00f29d19afc60ac07 (diff) | |
download | freebsd-ports-bb24b8a158ad82acbe2abce4175fab1cffafa4a0.zip |
databases/memcached: fix build on powerpc64 elfv2
-no-integrapted-as causes:
1195 /tmp/conftest-4d18ad.s: Assembler messages:
1196 /tmp/conftest-4d18ad.s:2: Error: unknown pseudo-op: `.abiversion'
Disable DTRACE to avoid it.
Diffstat (limited to 'databases/memcached')
-rw-r--r-- | databases/memcached/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/databases/memcached/Makefile b/databases/memcached/Makefile index 0019da1fcf7a..ece69bd7ca6f 100644 --- a/databases/memcached/Makefile +++ b/databases/memcached/Makefile @@ -45,6 +45,8 @@ OPTIONS_EXCLUDE_i386= DTRACE OPTIONS_EXCLUDE_aarch64= DTRACE OPTIONS_EXCLUDE_armv6= DTRACE OPTIONS_EXCLUDE_armv7= DTRACE +# /tmp/conftest-4d18ad.s:2: Error: unknown pseudo-op: `.abiversion' +OPTIONS_EXCLUDE_powerpc64= DTRACE DTRACE_DESC= Enable dtrace probes SASL_DESC= Enable SASL Authentication |