summaryrefslogtreecommitdiff
path: root/deps
Commit message (Collapse)AuthorAgeFilesLines
...
* Define AR to help with lua cross-compilationDaniel Price2014-08-121-1/+6
| | | | Closes #997
* Add support for compiling on AIXsiahl2014-08-072-1/+5
| | | | Closes #1900
* Silence different signs comparison warning in sds.c.antirez2014-06-231-1/+1
|
* Use Redis updated sds.c for deps/hiredis.antirez2014-06-232-76/+269
|
* Dummy zmalloc.h restored into deps/hiredis.antirez2014-06-231-0/+13
|
* hiredis: Update to latest versionMatt Stancliff2014-06-2322-196/+730
| | | | | | | | This is hiredis f225c276be7fd0646019b51023e3f41566633dfe This update includes all changes that diverged inside of Redis since the last update. This version also allows optional source address binding for connections which we need for some Sentinel deployments.
* Jemalloc updated to 3.6.0.antirez2014-06-20148-4901/+16667
| | | | | Not a single bug in about 3 months, and our previous version was too old (3.2.0).
* Jemalloc update script added.antirez2014-06-201-0/+9
|
* Linenoise updated, multiline mode enabled in redis-cli.antirez2014-03-132-252/+727
|
* fix lua_cmsgpack pack map as arrayyihuang2013-08-271-1/+1
|
* Fix sdsempty() prototype in sds.h.antirez2013-08-121-1/+1
|
* Use latest sds.c in the hiredis library under deps.antirez2013-07-254-120/+422
|
* hiredis: minimal IPv6 support.antirez2013-07-111-2/+10
|
* Lua updated to version 5.1.5.antirez2013-04-2922-136/+194
|
* Redis/Jemalloc Gitignore were too aggressive.antirez2013-04-181-5/+0
| | | | | | | | Redis gitignore was too aggressive since simply broken. Jemalloc gitignore was too agressive because it is conceived to just keep the files that allow to generate all the rest in development environments (so for instance the "configure" file is excluded).
* Inherit CC for LuaJohan Bergström2013-03-161-1/+1
|
* Spaces to tabsJohan Bergström2013-03-161-2/+2
|
* Lua struct library updated to version 0.2.antirez2013-01-231-52/+119
| | | | | | | | | | | | There was a bug in the previous version of this library that caused a crash under the circumstances described in issue #901. The newer version of the library appears to be fixed (I tested it manually with valgrind and everything seems fine now). For more information about this library please visit this web site: http://www.inf.puc-rio.br/~roberto/struct/
* Added missing license and copyright in deps/hiredis.antirez2012-12-173-0/+90
|
* Define _XOPEN_SOURCE appropriately on NetBSD.Patrick TJ McPhee2012-12-121-1/+1
|
* Jemalloc updated to version 3.2.0.antirez2012-11-2840-631/+1741
|
* 32 bit build fixed on Linux.antirez2012-11-011-1/+1
| | | | | | | | It failed because of the way jemalloc was compiled (without passing the right flags to make, but just to configure). Now the same set of flags are also passed to the make command, fixing the issue. This fixes issue #744
* Ctrl+w support in linenoise.antirez2012-10-261-20/+37
|
* hiredis library updated.antirez2012-08-215-28/+90
| | | | | | | | This version of hiredis merges modifications of the Redis fork with latest changes in the hiredis repository. The same version was pushed on the hiredis repository and will probably merged into the master branch in short time.
* Deleted jemalloc.orig from /deps.antirez2012-05-1680-30365/+0
| | | | | | In the commit upgrading jemalloc to version 3.0.0 I added the old version of Jemalloc in the 'jemalloc.orig' directory for an error. This commit removes the not useful version of jemalloc.
* Jemalloc updated to 3.0.0.antirez2012-05-16156-9017/+42839
| | | | | | | | | | | | Full changelog here: http://www.canonware.com/cgi-bin/gitweb.cgi?p=jemalloc.git;a=blob_plain;f=ChangeLog;hb=master Notable improvements from the point of view of Redis: 1) Bugfixing. 2) Support for Valgrind. 3) Support for OSX Lion, FreeBSD.
* Clean up MakefilesPieter Noordhuis2012-04-112-36/+66
| | | | | | | Remove unused variables. Instead of overriding non-standard variables such as ARCH and PROF, use standard variables CFLAGS and LDFLAGS to override Makefile settings. Move dependencies generated by `make dep` to a separate file.
* lua_cmsgpack.c addedantirez2012-02-241-0/+729
|
* Lua_cmsgpack added to Redis scripting.antirez2012-02-241-1/+1
|
* Fix 32bit build of hiredisantirez2012-02-191-2/+2
|
* Applied a few modifications to hiredis to tune it for speed ↵antirez2012-02-192-4/+6
| | | | (redis-benchmark) and ability to read more deeply nested replies (redis-cli).
* The hiredis lib shipped with Redis was updated to latest version.antirez2012-02-1921-734/+1261
|
* added lua struct c extensionlsbardel2012-02-132-1/+355
|
* jemalloc gitignore updated to jemalloc 2.2.5antirez2011-11-251-11/+19
|
* Update to jemalloc 2.2.5jbergstroem2011-11-2324-202/+535
|
* Rebuild deps/ and src/ when ARCH changesPieter Noordhuis2011-11-151-0/+59
| | | | | | | | | | | | | | | This change moves the build instructions for dependencies to a separate Makefile in deps/. The ARCH environment variable is stored in a .make-arch file in the same directory as the Makefile. The contents of this file is read and compared to the current ARCH, and, on a mismatch triggers rebuilding the entire source tree. When file .make-arch exists and matches with ARCH from the environment, the dependencies are assumed to already be built. The new "clean" target only cleans the Redis source tree, not its dependencies. To clear the dependencies as well, the "distclean" target can be used.
* 32bit build fixed, broken by a previous commit fixing build on Solarisantirez2011-11-082-5/+5
|
* hiredis/redis changes for speed with big payloads: read buffer size setantirez2011-11-081-2/+3
| | | | | | to 16k, request buffer size is no longer destroyed when emtpy and large (better fix needed). Redis clients static output buffer set to 16k as well.
* Lua cjson include paths now use the local includes.antirez2011-10-191-2/+2
|
* JSON support for Lua scripting, based on work from @lp, thanks!. We are ↵antirez2011-10-194-2/+1694
| | | | using the good and fast cjson by Mark Pulford.
* master branch merged into scripting.antirez2011-07-121-3/+3
|\
| * hiredis max multi bulk nesting level raised to 7antirez2011-06-301-3/+3
| |
* | unstable merge conflicts resolvedantirez2011-06-2584-0/+40446
|\ \ | |/
| * Ignore jemalloc build artifactsPieter Noordhuis2011-06-201-0/+15
| |
| * jemalloc source addedantirez2011-06-2083-0/+40431
| |
* | makefile adapted to link against lua lib and to pass the 32bit flag to Lua ↵antirez2011-05-25103-0/+28459
|/ | | | building system
* Update hiredisPieter Noordhuis2011-05-0515-179/+1187
|
* linenoise updatedantirez2011-02-221-2/+13
|
* Update hiredis to 0.9.2Pieter Noordhuis2010-12-2316-173/+678
|
* Linenoise updated to latest versionantirez2010-12-101-1/+3
|