libGL: disable d3d9 state tracker with musl.

This commit is contained in:
Juan RP 2015-06-15 16:20:36 +02:00
parent 87d19ce28c
commit de459f399c

View file

@ -62,7 +62,8 @@ case "$XBPS_TARGET_MACHINE" in
esac
case "$XBPS_TARGET_MACHINE" in
# Disable TLS with musl: https://bugs.freedesktop.org/show_bug.cgi?id=35268
*-musl) configure_args+=" --disable-glx-tls";;
# Disable D3D9 state tracker: needs fpu_control.h
*-musl) configure_args+=" --disable-glx-tls --disable-nine";;
*) configure_args+=" --enable-glx-tls";;
esac