From: Felix Fietkau Date: Wed, 12 Oct 2011 14:16:58 +0000 (+0200) Subject: move --std=gnu99 to the main cflags X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=aaa6302c203cf4fecf121f485f0cb0cf9bf067be;ds=inline move --std=gnu99 to the main cflags --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d20b490..a57123e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 2.6) PROJECT(netifd C) -ADD_DEFINITIONS(-Os -Wall -Werror) +ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99) SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") @@ -32,7 +32,7 @@ ELSE() ENDIF() IF(DEBUG) - ADD_DEFINITIONS(-DDEBUG --std=gnu99 -g3) + ADD_DEFINITIONS(-DDEBUG -g3) ENDIF()