diff options
author | tcely <tcely@users.noreply.github.com> | 2019-04-20 13:53:29 -0400 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-04-20 18:02:18 +0000 |
commit | cb37718d50f68e5274491cbc7da03d301e00cf93 (patch) | |
tree | 7e4c24aa888813069ce37be8a7fe86289c2fb3a2 /community/pdns-recursor | |
parent | 9f8282f4ef8cf2f0fa82759c7c3b6873c236407a (diff) | |
download | aports-cb37718d50f68e5274491cbc7da03d301e00cf93.tar.bz2 aports-cb37718d50f68e5274491cbc7da03d301e00cf93.tar.xz |
community/pdns-recursor: disable on s390x
build step failed on s390x with undefined references to:
- jump_fcontext
- make_fcontext
```
CXXLD testrunner
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`pdns_swapcontext(pdns_ucontext_t&, pdns_ucontext_t const&)':
mtasker_context.cc:(.text+0xe8): undefined reference to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`pdns_makecontext(pdns_ucontext_t&, boost::function<void ()>&)':
mtasker_context.cc:(.text+0x1ea): undefined reference to `make_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.cc:(.text+0x20e):
undefined reference to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.o: in function
`threadWrapper': mtasker_context.cc:(.text+0x27e): undefined reference
to `jump_fcontext'
/usr/s390x-alpine-linux-musl/bin/ld: mtasker_context.cc:(.text+0x382):
undefined reference to `jump_fcontext'
collect2: error: ld returned 1 exit status
make[2]: *** [Makefile:1210: testrunner] Error 1
```
Diffstat (limited to 'community/pdns-recursor')
-rw-r--r-- | community/pdns-recursor/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/pdns-recursor/APKBUILD b/community/pdns-recursor/APKBUILD index 20f9ed8c75..d596533407 100644 --- a/community/pdns-recursor/APKBUILD +++ b/community/pdns-recursor/APKBUILD @@ -5,7 +5,8 @@ pkgver=4.1.12 pkgrel=2 pkgdesc="PowerDNS Recursive Server" url="https://www.powerdns.com/" -arch="all" +# build of testrunner fails on s390x +arch="all !s390x" license="GPL-2.0-or-later" depends="dns-root-hints" depends_dev="" |