aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2011-04-19 10:44:48 +0300
committerLasse Collin <lasse.collin@tukaani.org>2011-04-19 10:44:48 +0300
commit0b77c4a75158ccc416b07d6e81df8ee0abaea720 (patch)
tree33ff3af9f33f77ea27204130f01cc10b3c7078a2
parentUpdate THANKS. (diff)
downloadxz-0b77c4a75158ccc416b07d6e81df8ee0abaea720.tar.xz
Build: Warn if no supported method to detect the number of CPU cores.
-rw-r--r--configure.ac11
1 files changed, 5 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index 73dc358c..07b3ceb3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -658,9 +658,8 @@ if test x$tuklib_cv_physmem_method = xunknown; then
echo "or make a patch to add support for this operating system."
fi
-# Not threading yet so don't warn.
-#if test x$tuklib_cv_cpucores_method = xunknown; then
-# echo
-# echo "WARNING:"
-# echo "No supported method to detect the number of CPU cores."
-#fi
+if test x$tuklib_cv_cpucores_method = xunknown; then
+ echo
+ echo "WARNING:"
+ echo "No supported method to detect the number of CPU cores."
+fi