diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2011-04-19 10:44:48 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2011-04-19 10:44:48 +0300 |
commit | 0b77c4a75158ccc416b07d6e81df8ee0abaea720 (patch) | |
tree | 33ff3af9f33f77ea27204130f01cc10b3c7078a2 /configure.ac | |
parent | Update THANKS. (diff) | |
download | xz-0b77c4a75158ccc416b07d6e81df8ee0abaea720.tar.xz |
Build: Warn if no supported method to detect the number of CPU cores.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
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 |