chromium: unbreak musl build

use_experimental_allocator_shim depends on glibc
This commit is contained in:
Michael Gehring 2016-06-01 21:39:15 +02:00
parent c7630a3847
commit 01f1ceca52
1 changed files with 2 additions and 2 deletions

View File

@ -167,11 +167,11 @@ do_configure() {
case "${XBPS_TARGET_MACHINE}" in case "${XBPS_TARGET_MACHINE}" in
x86_64-musl*) x86_64-musl*)
conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1" conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1"
conf+=" -Duse_allocator=none -Dtarget_arch=x64" conf+=" -Duse_allocator=none -Duse_experimental_allocator_shim=false -Dtarget_arch=x64"
;; ;;
i686-musl*) i686-musl*)
conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1" conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1"
conf+=" -Duse_allocator=none -Dtarget_arch=ia32" conf+=" -Duse_allocator=none -Duse_experimental_allocator_shim=false -Dtarget_arch=ia32"
;; ;;
i686) i686)
conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1" conf+=" -Ddisable_nacl=1 -Ddisable_pnacl=1"