Commit Diff
Commit:
0ca4090fb17027fcde066c61130649765444ff94
Date:
Thu Oct 4 20:30:37 2018
UTC
Message
Add -std=c89
--- Makefile
+++ Makefile
@@ -8,7 +8,7 @@ CFLAGS = $(CDEFS) -DVERSION=\"$(VERSION)\" `pkg-conf
CC ?= cc
LIBS = `pkg-config --libs x11 $(OPTIONAL)`
OPTIM = -O3
-CFLAGS = $(CDEFS) -DVERSION=\"$(VERSION)\" `pkg-config --cflags x11 $(OPTIONAL)`
+CFLAGS = $(CDEFS) -std=c89 -DVERSION=\"$(VERSION)\" `pkg-config --cflags x11 $(OPTIONAL)`
.PHONY: all clean install debug no_xft no_xinerama no_xft_xinerama gnu manpage
Omar Polo