Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpx/lua-cjson.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Pulford <mark@kyne.com.au>2012-01-19 18:16:25 +0400
committerMark Pulford <mark@kyne.com.au>2012-03-04 12:24:35 +0400
commit43be08bd32d244250eecc1d006a162651a173148 (patch)
tree6f0dcce88cf9dc4ea568aa7f559ee361918cb955
parentaaed0e6a8f1bdacb13f7d89f4eaea76c322edb65 (diff)
Add MULTIPLE_THREADS to Makefile #define list
-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 @@
##### Available defines for CJSON_CFLAGS #####
##
-## USE_INTERNAL_ISINF: Workaround for Solaris platforms missing isinf().
## ENABLE_CJSON_GLOBAL: Register "cjson" module table as a global variable.
+## USE_INTERNAL_ISINF: Workaround for Solaris platforms missing isinf().
## DISABLE_INVALID_NUMBERS: Permanently disable invalid JSON numbers:
## NaN, Infinity, hex.
##
## Optional built-in number conversion uses the following defines:
## USE_INTERNAL_DTOA: Use builtin strtod/dtoa for numeric conversions.
## IEEE_BIG_ENDIAN: Required on big endian architectures.
+## MULTIPLE_THREADS: Must be set when Lua CJSON may be used in a
+## multi-threaded application. Requries _pthreads_.
##### Build defaults #####
LUA_VERSION = 5.1