Fixed linux compile to support fpclassify (issue #18)

This commit is contained in:
Kevin Branigan 2015-10-05 13:46:14 -04:00
parent 8865d869db
commit 1a20eb8494
1 changed files with 1 additions and 1 deletions

View File

@ -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')