mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
bind: disable catgets on musl
This commit is contained in:
parent
f512c6e113
commit
04923b2869
1 changed files with 9 additions and 1 deletions
|
@ -2,7 +2,7 @@
|
||||||
pkgname=bind
|
pkgname=bind
|
||||||
reverts="9.13.6_1"
|
reverts="9.13.6_1"
|
||||||
version=9.11.11
|
version=9.11.11
|
||||||
revision=1
|
revision=2
|
||||||
_fullver="${version}${_patchver:+-${_patchver}}"
|
_fullver="${version}${_patchver:+-${_patchver}}"
|
||||||
wrksrc="${pkgname}-${_fullver}"
|
wrksrc="${pkgname}-${_fullver}"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
|
@ -36,6 +36,14 @@ case "$XBPS_TARGET_MACHINE" in
|
||||||
x86_64*|i686*) build_options_default+=" seccomp";;
|
x86_64*|i686*) build_options_default+=" seccomp";;
|
||||||
esac
|
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() {
|
do_check() {
|
||||||
# requires special network setup
|
# requires special network setup
|
||||||
:
|
:
|
||||||
|
|
Loading…
Add table
Reference in a new issue