xz: Fix build with --disable-threads.

Cette révision appartient à :
Lasse Collin 2022-04-14 20:53:16 +03:00
Parent 1d59289727
révision 5d8f3764ef
1 fichiers modifiés avec 4 ajouts et 0 suppressions

Voir le fichier

@ -91,7 +91,11 @@ hardware_threads_get(void)
extern bool
hardware_threads_is_mt(void)
{
#ifdef MYTHREAD_ENABLED
return threads_max > 1 || threads_are_automatic;
#else
return false;
#endif
}