mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 22:47:12 +01:00
Fix version detection on gcc 3.3.
svn:r10213
This commit is contained in:
parent
7a61357250
commit
f8a2d4dd83
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ if test x$enable_gcc_warnings = xyes; then
|
||||||
#endif]), have_gcc4=yes, have_gcc4=no)
|
#endif]), have_gcc4=yes, have_gcc4=no)
|
||||||
|
|
||||||
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [
|
AC_COMPILE_IFELSE(AC_LANG_PROGRAM([], [
|
||||||
#if !defined(__GNUC__) || (__GNUC_MINOR__ < 2)
|
#if !defined(__GNUC__) || (__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 2)
|
||||||
#error
|
#error
|
||||||
#endif]), have_gcc42=yes, have_gcc42=no)
|
#endif]), have_gcc42=yes, have_gcc42=no)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue