From 30bceb68dc6d8cb08e7cdd74387f7f3d835226d2 Mon Sep 17 00:00:00 2001 From: sago007 Date: Sun, 27 Nov 2016 21:31:03 +0100 Subject: [PATCH] Travis uses gcc 4.6.3 and it does not support c11. Trying c99. --- Makefile.OpenArena | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.OpenArena b/Makefile.OpenArena index c8608de4..bbc72a6c 100644 --- a/Makefile.OpenArena +++ b/Makefile.OpenArena @@ -49,8 +49,8 @@ GLSL_TEXTURES =1 # for shaders on models, leifxdither, etc GLSL_BACKEND =1 # for the entire backend. -#Possible values "gnu90", "gnu99" and "gnu11". Note that the engine uses gnu-extensions. gnu90 is broken in the commit where this message is added. -CFLAGS+="-std=gnu11" +#Possible values "gnu90", "gnu99" and "gnu11". Note that the engine uses gnu-extensions. gnu90 is broken in the commit where this message is added. Travis does not support gnu11 at the moment. +CFLAGS+="-std=gnu99" # You can change these although you probably don't need to