diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-09-06 20:38:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-09-06 20:38:23 +0300 |
commit | 0d9d18acc1ee13f0101d6c4a726618ba00222ddf (patch) | |
tree | dae7d63fd5c7d94dd2c34814752329ac5e88a751 /src | |
parent | 37a7b44b49ac709122987715590b3387e1714b2a (diff) | |
download | plugin-0d9d18acc1ee13f0101d6c4a726618ba00222ddf.tar.gz plugin-0d9d18acc1ee13f0101d6c4a726618ba00222ddf.tar.bz2 plugin-0d9d18acc1ee13f0101d6c4a726618ba00222ddf.tar.xz plugin-0d9d18acc1ee13f0101d6c4a726618ba00222ddf.zip |
Switch to using C version c11.
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 68828fe..32eaf7c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -136,7 +136,7 @@ MAP_SRC = emap/atcommand.c \ # need remove -Wno-unused -SHARED_CFLAGS = ${CFLAGS} -O3 -pipe -ffast-math -std=c99 -Wall -Wextra -Wno-sign-compare -Wno-unused -fno-omit-frame-pointer \ +SHARED_CFLAGS = ${CFLAGS} -O3 -pipe -ffast-math -std=c11 -Wall -Wextra -Wno-sign-compare -Wno-unused -fno-omit-frame-pointer \ -DPCRE_SUPPORT -I../../.. -I../../../../3rdparty \ -DPACKETVER=20150513 \ -DevolPacketOffset=0 |