aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2014-02-11Merge branch '2.6'Petri Lehtinen1-3/+49
2014-02-11jansson 2.6Petri Lehtinen1-1/+1
2014-02-11CVE-2013-6401: Change hash function, randomize hashesPetri Lehtinen1-2/+48
Thanks to Florian Weimer and Eric Sesterhenn for reporting, reviewing and testing.
2014-01-27Renamed config.h -> jansson_private_config.hJoakim Soderberg1-1/+1
This is because it's really easy to get a name collission if compiling Jansson as a subproject in a larger CMake project. If one project includes several subprojects each having their own config.h, this will cause the wrong file to be loaded.
2013-09-19jansson 2.5v2.5Petri Lehtinen1-1/+1
2012-09-23Set master for 2.5 development modePetri Lehtinen1-1/+1
2012-09-23jansson 2.4v2.4Petri Lehtinen1-1/+1
2012-03-20Merge branch '2.3'Petri Lehtinen1-7/+8
2012-03-20Make sure strtoll() is available when using long longPetri Lehtinen1-7/+8
2012-01-30Set master to 2.4 development modePetri Lehtinen1-1/+1
2012-01-27jansson 2.3v2.3Petri Lehtinen1-1/+1
2011-10-06jansson 2.2.1v2.2.1Petri Lehtinen1-1/+1
2011-10-02Make real number encoding and decoding work under all localesPetri Lehtinen1-0/+7
The decimal point '.' is changed to locale's decimal point before/after JSON conversion to make C standard library's locale-specific string conversion functions work correctly. All the tests now call setlocale(LC_ALL, "") on startup to use the locale set in the environment. Fixes GH-32.
2011-09-02jansson 2.2v2.2Petri Lehtinen1-1/+1
2011-06-10jansson 2.1v2.1Petri Lehtinen1-1/+1
2011-03-31Merge branch '2.0'Petri Lehtinen1-1/+1
Conflicts: doc/conf.py src/jansson.h
2011-03-31jansson 2.0.1v2.0.1Petri Lehtinen1-1/+1
2011-02-28jansson 2.0v2.0Petri Lehtinen1-1/+1
2010-08-14Merge branch '1.3'Petri Lehtinen1-1/+1
Conflicts: doc/apiref.rst src/jansson_private.h
2010-08-14Set the version number to 2.0prePetri Lehtinen1-1/+1
2010-08-13Change the underlying type of JSON integer from long to json_int_tPetri Lehtinen1-0/+7
json_int_t is typedef'd to long long if it's supported, or long otherwise. There's also some supporting things, like the JSON_INTEGER_FORMAT macro that expands to the printf() conversion specifier that corresponds to json_int_t's actual type. This is a backwards incompatible change.
2010-08-12Check for gcc before setting gcc specific CFLAGSPetri Lehtinen1-0/+1
2010-08-10Move site configuration to jansson_config.hPetri Lehtinen1-1/+1
This way, more site configuration can be more easily added later.
2010-06-14configure.ac: Remove unneeded AC_PROG_CXXPetri Lehtinen1-1/+0
2010-06-13jansson 1.3v1.3Petri Lehtinen1-1/+1
2010-04-03Merge branch '1.2'Petri Lehtinen1-1/+1
Conflicts: CHANGES configure.ac doc/conf.py
2010-04-03jansson 1.2.1v1.2.1Petri Lehtinen1-1/+1
2010-03-28Merge branch '1.2'Petri Lehtinen1-1/+10
Conflicts: configure.ac
2010-03-28Require autoconf 2.60Petri Lehtinen1-1/+1
The AC_TYPE_INT32_T macro first appeared in autoconf 2.60.
2010-03-28Support compilers that don't have the "inline" keywordPetri Lehtinen1-0/+9
Use AC_C_INLINE autoconf macro, include config.h where needed, and add a define of JSON_INLINE to jansson.h that has the correct "inline" keyword.
2010-03-23Merge branch '1.2'Petri Lehtinen1-0/+1
2010-02-11Update CHANGES, change version to 1.2+Petri Lehtinen1-1/+1
2010-02-06Make int32_t available on all systemsPetri Lehtinen1-0/+1
Use AC_TYPE_INT32_T and include inttypes.h (if it exists) instead of stdint.h for maximum portability.
2010-01-21Merge branch 'c++-api'Petri Lehtinen1-0/+1
2010-01-21jansson 1.2v1.2Petri Lehtinen1-1/+1
2010-01-18integrate jansson.hpp into build and test suiteSean Middleditch1-0/+1
2010-01-17Merge branch '1.1'Petri Lehtinen1-0/+1
Conflicts: Makefile.am
2010-01-07Add pkg-config support1.1Petri Lehtinen1-0/+1
Thanks to Sean Middleditch for contributing.
2009-12-21Merge branch '1.1'Petri Lehtinen1-1/+1
Conflicts: configure.ac doc/conf.py
2009-12-18jansson 1.1.3v1.1.3Petri Lehtinen1-1/+1
2009-12-16Refactor the test systemPetri Lehtinen1-2/+3
2009-11-08Merge branch '1.1'Petri Lehtinen1-1/+1
Conflicts: configure.ac doc/conf.py
2009-11-08jansson 1.1.2v1.1.2Petri Lehtinen1-1/+1
2009-10-26Merge branch '1.1'Petri Lehtinen1-1/+1
Conflicts: CHANGES configure.ac doc/conf.py
2009-10-26jansson 1.1.1v1.1.1Petri Lehtinen1-1/+1
2009-10-21Set the version number to 1.1+Petri Lehtinen1-1/+1
2009-10-20jansson 1.1v1.1Petri Lehtinen1-1/+1
2009-10-11Merge branch '1.0'Petri Lehtinen1-2/+2
Conflicts: configure.ac doc/conf.py
2009-10-11jansson 1.0.4v1.0.41.0Petri Lehtinen1-1/+1
2009-10-01Relax Autoconf version prereqPetri Lehtinen1-1/+1
From 2.63 to 2.59, which is more widely supported.