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
AgeCommit message (Collapse)Author
2012-03-04Bump version to 2.1develMark Pulford
2012-03-04Work around Solaris awk limitationsMark Pulford
Work around Solaris awk limitations: - Limit line lengths to 2500 bytes - Use "count > 0" instead of "count" for test expression
2012-03-04Bump version to 2.0develMark Pulford
Bump version to 2.0devel due to significant changes and updated API (runtime config not fully backwards compatible).
2012-03-04Fix runtests.sh after API change and file movesMark Pulford
Fix runtests.sh after: - "util" module moved to lua/cjson - "version" removed
2012-03-04Bump development version to 1.1develMark Pulford
2011-12-15Automate package releases with build-packages.shMark Pulford
build-packages.sh has several advantages: - Automatically bumps version numbers - Builds HTML documentation on the fly
2011-12-13Add support for building via CMakeMark Pulford
2011-12-13Update build testing to show test counts/failuresMark Pulford
Display failed tests, and successful/total test counts. Use "awk" to provide a portable "ggrep -E" with context.
2011-12-13Ensure build tests only use the current cjson.soMark Pulford
Update runtests.sh to exit if an old copy of cjson.so is found.
2011-12-13Add automatic RPM build testingMark Pulford
2011-12-08Fix Makefile for use with non-GNU makeMark Pulford
- Remove GNU make "override" statements. - Add OBJS variable since there is no portable way to specify all targets for linking. Also: - Put build defaults at the top to avoid potential confusion. - Don't assume a Linux platform. Default to USE_POSIX_SETLOCALE. - Change "install -d" to mkdir/install since the former isn't available on some platforms (Solaris).
2011-11-29Add automated build testing (LuaRocks, Makefile)Mark Pulford