mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
Fix version detection on gcc 3.3.
svn:r10213
This commit is contained in:
parent
7a61357250
commit
f8a2d4dd83
@ -616,7 +616,7 @@ if test x$enable_gcc_warnings = xyes; then
|
||||
#endif]), have_gcc4=yes, have_gcc4=no)
|
||||
|
||||
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [
|
||||
#if !defined(__GNUC__) || (__GNUC_MINOR__ < 2)
|
||||
#if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
|
||||
#error
|
||||
#endif]), have_gcc42=yes, have_gcc42=no)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user