Autotools: Enable x86 assembler on Hurd by default

It has been enabled in Debian GNU/Hurd for 15+ years with no issues.
Hence, enable it by default also in the upstream sources.

The CMake build already had it enabled.

Link: https://salsa.debian.org/debian/xz-utils/-/blob/debian/5.8.2-2/debian/rules?ref_type=tags#L98
Closes: https://github.com/tukaani-project/xz/pull/204
This commit is contained in:
Pino Toscano 2025-12-30 19:59:55 +01:00 committed by Lasse Collin
parent 9f4c5a0d48
commit 47fb9d84c0
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -350,7 +350,7 @@ if test "x$enable_assembler" = xyes; then
case $host_os in case $host_os in
# Darwin should work too but only if not creating universal # Darwin should work too but only if not creating universal
# binaries. Solaris x86 could work too but I cannot test. # binaries. Solaris x86 could work too but I cannot test.
linux* | *bsd* | mingw* | cygwin | msys | *djgpp*) linux* | gnu* | *bsd* | mingw* | cygwin | msys | *djgpp*)
case $host_cpu in case $host_cpu in
i?86) enable_assembler=x86 ;; i?86) enable_assembler=x86 ;;
esac esac