Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 547638 | Differences between
and this patch

Collapse All | Expand All

(-)webkitgtk-2.4.8.orig/Source/autotools/CheckSystemAndBasicDependencies.m4 (-2 / +2 lines)
Lines 87-93 Link Here
87
c_compiler="unknown"
87
c_compiler="unknown"
88
AC_LANG_PUSH([C])
88
AC_LANG_PUSH([C])
89
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
89
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
90
#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7)
90
#if !(defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ >= 5 || __GNUC__ == 4 && __GNUC_MINOR__ >= 7))
91
#error Not a supported GCC compiler
91
#error Not a supported GCC compiler
92
#endif
92
#endif
93
])], [c_compiler="gcc"], [])
93
])], [c_compiler="gcc"], [])
Lines 106-112 Link Here
106
cxx_compiler="unknown"
106
cxx_compiler="unknown"
107
AC_LANG_PUSH([C++])
107
AC_LANG_PUSH([C++])
108
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
108
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
109
#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && __GNUC__ >= 4 && __GNUC_MINOR__ >= 7)
109
#if !(defined(__GNUG__) && defined(__GNUC__) && !defined(__clang__) && !defined(__INTEL_COMPILER) && (__GNUC__ >= 5 || __GNUC__ == 4 && __GNUC_MINOR__ >= 7))
110
#error Not a supported G++ compiler
110
#error Not a supported G++ compiler
111
#endif
111
#endif
112
])], [cxx_compiler="g++"], [])
112
])], [cxx_compiler="g++"], [])

Return to bug 547638