diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 82a7b1f9..aa05ba4c 100644 --- a/configure.ac +++ b/configure.ac @@ -681,3 +681,19 @@ AC_CONFIG_FILES([ ]) AC_OUTPUT + +# Some warnings +if test x$tuklib_cv_physmem_method = xunknown; then + echo + echo "WARNING:" + echo "No supported method to detect the amount of RAM." + echo "Consider using --enable-assume-ram (if you didn't already)" + 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 |