summaryrefslogtreecommitdiff
path: root/makefiles
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2014-05-31 11:09:35 +0200
committerAndreas Baumann <abaumann@yahoo.com>2014-05-31 11:09:35 +0200
commit4f6d08ce39cc430ed7ba90d143bf7af3fc8ca6d5 (patch)
treecaa45230678da0227c59041ca9c3f0a2ab535eac /makefiles
parent12c50867c04b2c2a11f5026466bbea02d5406b70 (diff)
downloadcrawler-4f6d08ce39cc430ed7ba90d143bf7af3fc8ca6d5.tar.gz
crawler-4f6d08ce39cc430ed7ba90d143bf7af3fc8ca6d5.tar.bz2
fixed and retested on gcc 4.9.0
Diffstat (limited to 'makefiles')
-rw-r--r--makefiles/gmake/compiler.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/makefiles/gmake/compiler.mk b/makefiles/gmake/compiler.mk
index abd7d36..fac6f94 100644
--- a/makefiles/gmake/compiler.mk
+++ b/makefiles/gmake/compiler.mk
@@ -131,6 +131,10 @@ ifeq "$(GCC_MINOR_VERSION)" "8"
CXX_COMPILE_FLAGS += \
-Wno-unused-local-typedefs
endif
+ifeq "$(GCC_MINOR_VERSION)" "9"
+CXX_COMPILE_FLAGS += \
+ -Wno-unused-local-typedefs
+endif
endif
ifeq "$(GCC_MAJOR_VERSION)" "3"