Allow precompiled headers to be used with gcc >= 4.2 by default

This commit is contained in:
Moritz Bunkus 2010-03-23 20:47:58 +01:00
parent b253f1d9ec
commit 835a81c2da

View File

@ -8,7 +8,7 @@ AC_ARG_ENABLE([precompiled_headers],
[enable_precompiled_headers=auto])
if test x"$enable_precompiled_headers" = x"auto"; then
if ! check_version 4.4.0 $ac_cv_gcc_version ; then
if ! check_version 4.2.0 $ac_cv_gcc_version ; then
enable_precompiled_headers=no
else
enable_precompiled_headers=yes