diff options
author | Mattias Andrée <maandree@kth.se> | 2022-02-19 22:32:09 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2022-02-19 22:32:09 +0100 |
commit | 5ddc5bf097fdac900e5d2530d14200355f52ba67 (patch) | |
tree | 3e2546ee85e04344e327c08ddb4da8f4d6f21de0 | |
parent | Update to use version 1 of libgrapheme (diff) | |
download | libskrift-5ddc5bf097fdac900e5d2530d14200355f52ba67.tar.gz libskrift-5ddc5bf097fdac900e5d2530d14200355f52ba67.tar.bz2 libskrift-5ddc5bf097fdac900e5d2530d14200355f52ba67.tar.xz |
Use c99 instead of cc -std=c99
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | config.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ MERGE_STYLE = MAX CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -D_GNU_SOURCE \ -D$(MERGE_STYLE)_MERGE $(GZIP_SUPPORT) '-DDEMO_FONT="$(DEMO_FONT)"' -CFLAGS = -std=c99 -Wall -g +CFLAGS = -Wall -g LDFLAGS = -lschrift -lm -lgrapheme -CC = cc +CC = c99 |