aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2012-01-20 00:46:25 +1030
committerMark Pulford <mark@kyne.com.au>2012-03-04 18:54:35 +1030
commit43be08bd32d244250eecc1d006a162651a173148 (patch)
tree6f0dcce88cf9dc4ea568aa7f559ee361918cb955
parentaaed0e6a8f1bdacb13f7d89f4eaea76c322edb65 (diff)
downloadlua-cjson-43be08bd32d244250eecc1d006a162651a173148.tar.gz
lua-cjson-43be08bd32d244250eecc1d006a162651a173148.tar.bz2
lua-cjson-43be08bd32d244250eecc1d006a162651a173148.zip
Add MULTIPLE_THREADS to Makefile #define list
Diffstat (limited to '')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9fb8d0b..ac1b803 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,15 @@
1##### Available defines for CJSON_CFLAGS ##### 1##### Available defines for CJSON_CFLAGS #####
2## 2##
3## USE_INTERNAL_ISINF: Workaround for Solaris platforms missing isinf().
4## ENABLE_CJSON_GLOBAL: Register "cjson" module table as a global variable. 3## ENABLE_CJSON_GLOBAL: Register "cjson" module table as a global variable.
4## USE_INTERNAL_ISINF: Workaround for Solaris platforms missing isinf().
5## DISABLE_INVALID_NUMBERS: Permanently disable invalid JSON numbers: 5## DISABLE_INVALID_NUMBERS: Permanently disable invalid JSON numbers:
6## NaN, Infinity, hex. 6## NaN, Infinity, hex.
7## 7##
8## Optional built-in number conversion uses the following defines: 8## Optional built-in number conversion uses the following defines:
9## USE_INTERNAL_DTOA: Use builtin strtod/dtoa for numeric conversions. 9## USE_INTERNAL_DTOA: Use builtin strtod/dtoa for numeric conversions.
10## IEEE_BIG_ENDIAN: Required on big endian architectures. 10## IEEE_BIG_ENDIAN: Required on big endian architectures.
11## MULTIPLE_THREADS: Must be set when Lua CJSON may be used in a
12## multi-threaded application. Requries _pthreads_.
11 13
12##### Build defaults ##### 14##### Build defaults #####
13LUA_VERSION = 5.1 15LUA_VERSION = 5.1