Add -std=c89 to compile flags

Helps with some of the fixed-width typedefs in the bitshuffle library.
This commit is contained in:
Charles Mita
2018-10-09 14:12:30 +01:00
parent d433e6b1d0
commit 78d49aa161
+1 -1
View File
@@ -8,7 +8,7 @@ BSLZ4_BUILD_DIR = ./bslz4/build
BSLZ4_INC_DIR = $(BSLZ4_SRC_DIR)
CC=h5cc
CFLAGS=-Wall -g -O2 -fpic -I$(INC_DIR) -I$(BSLZ4_INC_DIR)
CFLAGS=-Wall -g -O2 -fpic -I$(INC_DIR) -I$(BSLZ4_INC_DIR) -std=c89
.PHONY: all
all: plugin example test_plugin