bind: disable catgets on musl
This commit is contained in:
parent
f512c6e113
commit
04923b2869
|
@ -2,7 +2,7 @@
|
|||
pkgname=bind
|
||||
reverts="9.13.6_1"
|
||||
version=9.11.11
|
||||
revision=1
|
||||
revision=2
|
||||
_fullver="${version}${_patchver:+-${_patchver}}"
|
||||
wrksrc="${pkgname}-${_fullver}"
|
||||
build_style=gnu-configure
|
||||
|
@ -36,6 +36,14 @@ case "$XBPS_TARGET_MACHINE" in
|
|||
x86_64*|i686*) build_options_default+=" seccomp";;
|
||||
esac
|
||||
|
||||
pre_configure() {
|
||||
# various bind-utils segfault with musl-1.1.24 in catgets
|
||||
# TODO: actually fix instead of disabling it
|
||||
case "$XBPS_TARGET_MACHINE" in
|
||||
*-musl) vsed -e 's/#define HAVE_CATGETS 1//g' -i configure
|
||||
esac
|
||||
}
|
||||
|
||||
do_check() {
|
||||
# requires special network setup
|
||||
:
|
||||
|
|
Loading…
Reference in New Issue