From 0b77c4a75158ccc416b07d6e81df8ee0abaea720 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Tue, 19 Apr 2011 10:44:48 +0300 Subject: [PATCH] Build: Warn if no supported method to detect the number of CPU cores. --- configure.ac | 11 +++++------ 1 file 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