emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 909dfaf: Also compile test module as C11


From: Philipp Stephani
Subject: [Emacs-diffs] master 909dfaf: Also compile test module as C11
Date: Mon, 12 Jun 2017 09:27:53 -0400 (EDT)

branch: master
commit 909dfaf3257e5e2de48a0a51bf9d42517a393fb0
Author: Philipp Stephani <address@hidden>
Commit: Philipp Stephani <address@hidden>

    Also compile test module as C11
    
    * test/data/emacs-module/Makefile (CFLAGS): Compile test module as C11
---
 test/data/emacs-module/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/data/emacs-module/Makefile b/test/data/emacs-module/Makefile
index db5e1b6..bfeddb0 100644
--- a/test/data/emacs-module/Makefile
+++ b/test/data/emacs-module/Makefile
@@ -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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]