]> git.eshelyaron.com Git - emacs.git/commitdiff
Also compile test module as C11
authorPhilipp Stephani <phst@google.com>
Mon, 12 Jun 2017 13:27:18 +0000 (15:27 +0200)
committerPhilipp Stephani <phst@google.com>
Mon, 12 Jun 2017 13:27:18 +0000 (15:27 +0200)
* test/data/emacs-module/Makefile (CFLAGS): Compile test module as C11

test/data/emacs-module/Makefile

index db5e1b680880910ba4e69a67034f7990e2b7b3e3..bfeddb0472fcfa99a33353958aeae2fd28112d16 100644 (file)
@@ -27,9 +27,9 @@ LDFLAGS =
 SO      = .so
 # -fPIC is a no-op on Windows, but causes a compiler warning
 ifeq ($(SO),.dll)
-CFLAGS  = -std=gnu99 -ggdb3 -Wall
+CFLAGS  = -std=c11 -ggdb3 -Wall
 else
-CFLAGS  = -std=gnu99 -ggdb3 -Wall -fPIC
+CFLAGS  = -std=c11 -ggdb3 -Wall -fPIC
 endif
 
 all: mod-test$(SO)