summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix build issues in baserock.baserock/morphMark Doffman2014-03-212-8/+9
| | | | | | Fix improper top level makefile. Update morph file removing description of this CMake project as 'autotools'
* Fix morph file with specialized build command.Mark Doffman2014-03-181-0/+2
|
* Add morph file.Mark Doffman2014-03-181-0/+5
|
* whitespace cleanupLloyd Hilaiel2014-03-173-61/+62
|
* typos and formattingLloyd Hilaiel2014-03-172-4/+4
|
* add generator reset, and ability to verify and reformat streamsLloyd Hilaiel2014-03-144-15/+47
|
* add -m flag to json_verify for processing a stream of json valuesLloyd Hilaiel2014-03-141-0/+4
|
* fix win32 build - don't link libm on dozeLloyd Hilaiel2014-02-231-1/+7
|
* Allow file argumentBjorn Reese2014-02-151-7/+17
|
* json_reformat should link against libmshahbag2014-02-151-1/+1
| | | | | | | | | | | | | | | | | This is specific to qnx. build error with qnx6.5.0 ../yajl-2.0.1/lib/libyajl_s.a(yajl_gen.c.obj): In function yajl_gen_double': yajl_gen.c:(.text+0x5b9): undefined reference to_DclassBuilding C object example/CMakeFiles/parse_config.dir/parse_config.c.obj ' yajl_gen.c:(.text+0x5cf): undefined reference to `_Dclass' cc: /opt/qnx650/host/linux/x86/usr/bin/ntox86-ld error 1 make[2]: *** [reformatter/json_reformat] Error 1 any platform that links does not link libm while linking libstdc http://community.qnx.com/sf/discussion/do/listPosts/projects.toolchain/discussion.core_development_tools.topc10811?_pagenum=2
* Makes 'nmake install' work.Austin Ziegler2014-02-153-15/+12
| | | | | | | | | | | | | | | | | | In BUILDING.WIN32, the following line exists: nmake install This doesn't work because the install targets never get built because of the code: IF(NOT WIN32) INSTALL(...) ... ENDIF() in several CMakeLists.txt files. There's no reason to disallow INSTALL on Windows, even if most developers (who use devenv on its own) will never use it.
* don't run tests during make install. fixes #101Lloyd Hilaiel2014-02-151-1/+1
|
* run api tests by defaultLloyd Hilaiel2014-02-151-1/+4
|
* make output for new custom tests more similar to parsing test outputRyan Flynn2014-02-151-2/+2
|
* remove superfolous dependency on ruby - fixes #110Lloyd Hilaiel2014-02-151-58/+57
|
* update copyright and emailLloyd Hilaiel2014-02-1535-39/+39
|
* add a custom api test facilityLloyd Hilaiel2014-02-158-10/+95
|
* move tests down directoryLloyd Hilaiel2014-02-15119-0/+0
|
* white space cleanupLloyd Hilaiel2014-02-152-9/+9
|
* Merge NetBSD build fix (no BASHisms) closes #90Lloyd Hilaiel2013-01-281-3/+3
|\
| * Removed bash dependency in test/run_tests.sh and updated for NetBSD.Steve Gravrock2012-12-221-4/+4
| |
| * Build fix for NetBSD and other systems where /bin/sh isn't bashSteve Gravrock2012-12-151-1/+1
| | | | | | | | | | | | Fixed by explicitly using /bin/bash. Removing bash-isms would also work. But /bin/sh is bash on most developers' systems, so using that shell explicitly seems like it's less likely to break in the future.
* | Merge pull request #82 from patperry/masterLloyd Hilaiel2013-01-282-2/+5
|\ \ | | | | | | Minor changes to make "gcc -Wextra" happy
| * | Fix some compiler warningsPatrick Perry2012-08-172-2/+5
| |/
* | Merge pull request #92 from emaste/masterLloyd Hilaiel2013-01-281-1/+1
|\ \ | | | | | | Clarify README with respect to legacy version
| * | Clarify legacy/current version infoEd Maste2012-12-181-1/+1
| |/
* | Merge pull request #83 from yep/fix-spellingLloyd Hilaiel2013-01-281-1/+1
|\ \ | |/ |/| fix spelling
| * fix spelling.yep2012-09-071-1/+1
|/
* bump to 2.0.5 after tagging 2.0.4Lloyd Hilaiel2011-12-191-1/+1
|
* changes in 2.0.42.0.4Lloyd Hilaiel2011-12-191-1/+5
|
* fix bug in f7e95b936f1d53b1f19a93d7cdca0821d7e09f93 - extra comma in ↵Lloyd Hilaiel2011-12-191-2/+2
| | | | reformatter usage
* Added error case for yajl_parse_integer "integer" to check theJoey Ekstrom2011-12-191-0/+4
| | | | | | characters are between 0-9, and setting an error case otherwise. Signed-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>
* Fixed a bug where valid integers were not being flagged as such, makingJoey Ekstrom2011-12-191-2/+1
| | | | | | | | calls like YAJL_IS_INTEGER fail, even though parsing succeeded. Consisted of removing checks that would have been necessary, if the custom integer parsing wasn't used. Signed-off-by: Lloyd Hilaiel <lloyd@hilaiel.com>
* Merge pull request #57 from plaguemorin/masterLloyd Hilaiel2011-12-191-5/+6
|\ | | | | Fixed memory leak
| * added errno resetting before setting/checking it in yajl_do_parse()7AC2011-08-191-0/+2
| |
| * Edited src/yajl_tree.c via GitHubPhilippe Lague-Morin2011-08-191-5/+6
| |
* | Merge pull request #49 from ConradIrwin/masterLloyd Hilaiel2011-12-192-0/+5
|\ \ | | | | | | yajl_gen_escape_solidus is unsettable
| * | Allow testing yajl_gen_escape_solidusConrad Irwin2011-07-171-0/+4
| | |
| * | Allow the yajl_gen_escape_solidus option to be set.Conrad Irwin2011-07-171-0/+1
| |/
* | Merge pull request #54 from bovine/masterLloyd Hilaiel2011-12-191-0/+3
|\ \ | | | | | | yajl_gen_double does not always emit decimal point
| * | update yajl_gen_double to enforce that serialized double values always ↵Jeff Lawson2011-07-301-0/+3
| |/ | | | | | | contain a decimal point, even if no digits follow the point. this prevents some readers from parsing such values as an integer.
* | Merge pull request #42 from 7AC/masterLloyd Hilaiel2011-12-191-0/+2
|\ \ | | | | | | errno not being reset
| * | added errno resetting before setting/checking it in yajl_do_parse()7AC2011-06-141-0/+2
| | |
* | | bump to version 2.0.4 after tagging 2.0.3Lloyd Hilaiel2011-12-122-1/+4
| | |
* | | changelog for 2.0.32.0.3Lloyd Hilaiel2011-12-121-0/+2
| |/ |/|
* | look for either _WIN32 or WIN32 on windows. closes #44Lloyd Hilaiel2011-06-203-3/+3
|/
* Merge pull request #36 from utahstreetlabs/tree-get-validation-errorLloyd Hilaiel2011-05-251-2/+4
|\ | | | | validate the length of the correct object in yajl_tree_get
| * validate the length of the correct object in yajl_tree_getRob Zuber2011-05-241-2/+4
|/
* Ignore .DS_Store files on OSXMirek Rusin2011-05-091-0/+1
|
* mention integration of jstamp's pkgconfig patchesLloyd Hilaiel2011-04-291-1/+1
|