summaryrefslogtreecommitdiffstats
path: root/mfbt
diff options
context:
space:
mode:
Diffstat (limited to 'mfbt')
-rw-r--r--mfbt/Compiler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/mfbt/Compiler.h b/mfbt/Compiler.h
index 1bd34d329..a4fb4b5f8 100644
--- a/mfbt/Compiler.h
+++ b/mfbt/Compiler.h
@@ -26,8 +26,8 @@
# define MOZ_GCC_VERSION_AT_MOST(major, minor, patchlevel) \
((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) \
<= ((major) * 10000 + (minor) * 100 + (patchlevel)))
-# if !MOZ_GCC_VERSION_AT_LEAST(4, 8, 0)
-# error "mfbt (and Gecko) require at least gcc 4.8 to build."
+# if !MOZ_GCC_VERSION_AT_LEAST(4, 9, 0)
+# error "mfbt (and Goanna) require at least gcc 4.9 to build."
# endif
#elif defined(_MSC_VER)