From 78d49aa161f9a4befd2f3f67d75d9c33e1ab695e Mon Sep 17 00:00:00 2001 From: Charles Mita Date: Tue, 9 Oct 2018 14:12:30 +0100 Subject: [PATCH] Add -std=c89 to compile flags Helps with some of the fixed-width typedefs in the bitshuffle library. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8fd50ff..ae5825a 100644 --- a/Makefile +++ b/Makefile @@ -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