From 1a20eb8494b60ad5b6a388fb0f65a0c53b8362e7 Mon Sep 17 00:00:00 2001 From: Kevin Branigan Date: Mon, 5 Oct 2015 13:46:14 -0400 Subject: [PATCH] Fixed linux compile to support fpclassify (issue #18) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2e52464..f196c81 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ INSTALL_LIBRARY_PATH = $(DESTDIR)$(PREFIX)/$(LIBRARY_PATH) INSTALL ?= cp -a -R_CFLAGS = -fpic $(CFLAGS) -Wall -Werror -Wstrict-prototypes -Wwrite-strings +R_CFLAGS = -fpic $(CFLAGS) -Wall -Werror -Wstrict-prototypes -Wwrite-strings -D_POSIX_C_SOURCE=200112L uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo false')