Commit Diff
Commit:
793e584b399e4461bfe196c73d47ea33d696429a
Date:
Fri Oct 18 19:09:02 2019
UTC
Message
removed -std=c89
don't pretend this is C89, this is C99. We use stdint and other stuff.
This also remove A LOT of warnings etc...
--- Makefile
+++ Makefile
@@ -8,7 +8,7 @@ CFLAGS = $(CDEFS) -std=c89 -DVERSION=\"$(VERSION)\"
CC ?= cc
LIBS = `pkg-config --libs x11 $(OPTIONAL)`
OPTIM = -O3
-CFLAGS = $(CDEFS) -std=c89 -DVERSION=\"$(VERSION)\" `pkg-config --cflags x11 $(OPTIONAL)`
+CFLAGS = $(CDEFS) -DVERSION=\"$(VERSION)\" `pkg-config --cflags x11 $(OPTIONAL)`
.PHONY: all clean install debug no_xft no_xinerama no_xft_xinerama gnu manpage
Omar Polo