aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2011-10-07 22:51:31 +1030
committerMark Pulford <mark@kyne.com.au>2011-10-07 22:51:31 +1030
commit48c5cf183fa7cab608168fdec2406a1ca3cb2c11 (patch)
tree76b385d490badeb00cf6ced3b59843ef94f20c34 /Makefile
parent0f3ab84a261292d16f684551e67f2f007199936a (diff)
downloadlua-cjson-48c5cf183fa7cab608168fdec2406a1ca3cb2c11.tar.gz
lua-cjson-48c5cf183fa7cab608168fdec2406a1ca3cb2c11.tar.bz2
lua-cjson-48c5cf183fa7cab608168fdec2406a1ca3cb2c11.zip
Rename MISSING_ISINF to USE_INTERNAL_ISINF
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5731440..5857aee 100644
--- a/Makefile
+++ b/Makefile
@@ -19,9 +19,9 @@ LUA_LIB_DIR ?= $(PREFIX)/lib/lua/$(LUA_VERSION)
19CFLAGS ?= -g -O3 -Wall -pedantic 19CFLAGS ?= -g -O3 -Wall -pedantic
20override CFLAGS += -fpic -I$(LUA_INCLUDE_DIR) -DVERSION=\"$(CJSON_VERSION)\" 20override CFLAGS += -fpic -I$(LUA_INCLUDE_DIR) -DVERSION=\"$(CJSON_VERSION)\"
21 21
22## Conditional work arounds 22## Optional work arounds
23# Handle Solaris platforms that are missing isinf(). 23# Handle Solaris platforms that are missing isinf().
24#override CFLAGS += -DMISSING_ISINF 24#override CFLAGS += -DUSE_INTERNAL_ISINF
25# Handle locales that use comma as a decimal separator on locale aware 25# Handle locales that use comma as a decimal separator on locale aware
26# platforms. Requires POSIX-1.2008 support. 26# platforms. Requires POSIX-1.2008 support.
27override CFLAGS += -DUSE_POSIX_LOCALE 27override CFLAGS += -DUSE_POSIX_LOCALE