Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-04-09 | Fix HIREDIS_MINOR | Pieter Noordhuis | |
Closes #219. | |||
2014-04-09 | Fix Makefile test to use more compatible syntax | Eddy Jansson | |
The existing way is not compatible with a lot of shells, including most bash installations, because the echos that generates the configuration sent to redis-server doesn't expand the escapes. Adding '-e' to the echo works under bash, but breaks on the Travis CI server. This is my attempt to find an alternative that works everywhere. [committer note: it doesn't work under Solaris make, but the Makefile was already broken under Solaris make. Solaris users must use gmake.] Closes #224 and Closes #221 | |||
2013-07-10 | Move examples into their own folder | Aaron Bedra | |
Closes #166. | |||
2013-07-10 | Merge branch 'libuv' | Pieter Noordhuis | |
Closes #172. | |||
2013-07-10 | Fix path to static libuv library | Pieter Noordhuis | |
2013-07-10 | Remove unused Makefile variables | Pieter Noordhuis | |
Fixes #176. | |||
2013-07-02 | Made example-ae work again | Erik Dubbelboer | |
2013-06-04 | Added libuv adapter | Erik Dubbelboer | |
2012-08-21 | Add ARCH to Makefile CFLAGS / LDFLAGS. | antirez | |
This makes builiding with an optional 32 bit target simpler. For instance Redis (that contains an embedded copy of hiredis) when compiled with "make 32bit" uses to pass an ARCH parameter to force an hiredis 32 bit build. | |||
2011-06-19 | Fix gprof target | Pieter Noordhuis | |
2011-06-19 | Coverage report | Pieter Noordhuis | |
2011-06-19 | Use CFLAGS and LDFLAGS instead of custom variables | Pieter Noordhuis | |
2011-06-19 | Append to REAL_LDFLAGS so LDFLAGS can be overridden by the user | Pieter Noordhuis | |
2011-06-19 | Pass LDFLAGS to linker when creating dynamic library | Pieter Noordhuis | |
2011-06-19 | Remove unnecessary overrides | Pieter Noordhuis | |
2011-06-19 | Don't pass CFLAGS when linking | Pieter Noordhuis | |
2011-06-18 | Add phony target | Pieter Noordhuis | |
2011-06-18 | Remove unused variables | Pieter Noordhuis | |
The variable OBJARCH was used to compile objects for both 32-bit and 64-bit architectures. It can be removed because this is only relevant for the Ruby wrapper for hiredis. This wrapper should put these flags in CFLAGS to get the same effect. | |||
2011-06-18 | Swap arguments | Pieter Noordhuis | |
2011-06-18 | Merge DEBUG in REAL_CFLAGS | Pieter Noordhuis | |
2011-06-18 | Allow *extra* CFLAGS/LDFLAGS via arguments | Pieter Noordhuis | |
2011-06-18 | Move redirection around | Pieter Noordhuis | |
2011-06-18 | Disallow overriding CFLAGS and LDFLAGS | Pieter Noordhuis | |
2011-06-18 | Move path variables closer to install target | Pieter Noordhuis | |
2011-06-18 | Move defaults outside if block | Pieter Noordhuis | |
2011-06-18 | Library variables may not be overridden | Pieter Noordhuis | |
2011-06-18 | Merge CCLINK with LDFLAGS | Pieter Noordhuis | |
2011-06-18 | Remove private feature macros for Solaris from compiler flags | Pieter Noordhuis | |
2011-06-18 | Add myself to Makefile license | Pieter Noordhuis | |
2011-06-18 | Remove unused libraries from link flags | Pieter Noordhuis | |
2011-06-18 | Fallback to gcc when $CC is not in $PATH | Pieter Noordhuis | |
2011-05-29 | Exit with a non-zero status when tests failed | Pieter Noordhuis | |
2011-05-22 | Test against unix socket connection in make check target | Pieter Noordhuis | |
2011-05-22 | Add "make check" target (useful for automated tests). | Piotr Sikora | |
While there, add "-p" option to "hiredis-test", so that we could run tests without interrupting Redis instance running on the default port. | |||
2011-04-22 | cp on Solaris doesn't have -a | Pieter Noordhuis | |
2011-04-22 | Add versioned symlinks for install target | Pieter Noordhuis | |
2011-04-22 | Solaris needs the static lib as last argument | Pieter Noordhuis | |
2011-04-22 | Move OBJ argument | Pieter Noordhuis | |
2011-04-22 | Braces -> parentheses | Pieter Noordhuis | |
2011-04-22 | Separate basename and suffix for library filename | Pieter Noordhuis | |
2011-04-22 | Configurable paths for install target | Pieter Noordhuis | |
2011-04-21 | Remove rpath from linker flags; link artifacts statically | Pieter Noordhuis | |
2011-04-21 | Remove util.h from Makefile | Pieter Noordhuis | |
2011-04-21 | Only use C99 for compiling hiredis itself | Pieter Noordhuis | |
The libevent example cannot be compiled when -std=c99 is passed. It is not necessary that the adapters nor the examples follow this standard, as long as the code for hiredis itself is compliant. | |||
2011-04-21 | Include fmacros.h to make sure strerror_p is defined on Linux | Pieter Noordhuis | |
2011-04-21 | Recompile net.c when hiredis.h changes | Pieter Noordhuis | |
2011-04-07 | Work with make v3.80 | Pieter Noordhuis | |
2011-01-27 | Avoid warnings with -Wstrict-prototypes | Pieter Noordhuis | |
2011-01-14 | Make dictionary functions static and include the .c file | Pieter Noordhuis | |
2010-12-31 | Replace zmalloc with regular malloc | Pieter Noordhuis | |