Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-24 | Merge branch 'soname-stable' into unstable | Jan-Erik Rediger | |
2015-07-28 | Use container-based Travis by installing packages through the addon | Jan-Erik Rediger | |
2015-07-27 | Added MacOS X addapter and corresponding example. | Dmitry Bakhvalov | |
Added MacOS X support via CoreFoundation run loop. | |||
2015-07-27 | Add Qt adapter and relative example. | Pietro Cerutti | |
2015-07-27 | Add an Ivykis adapter | Gergely Nagy | |
This adds a new adapter and an example for using hiredis with the ivykis async I/O library. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org> | |||
2015-07-27 | Use stable soname version | Jan-Erik Rediger | |
2015-05-30 | Update Makefile | w359405949 | |
fix link error while run "make hiredis-example-libuv": undefined reference to `clock_gettime' undefined reference to `clock_getres' | |||
2015-05-03 | Make sure to compile example to trigger edge-cases in compiling | Jan-Erik Rediger | |
2015-05-03 | Revert "Always compile with C99 standard." | Jan-Erik Rediger | |
This reverts commit d8145d79ce715054980938c751067ebaa541573c. | |||
2015-04-16 | Always compile with C99 standard. | Jan-Erik Rediger | |
Turns out: gnu9x defines `unix` to 1, making it unusable as a variable name. | |||
2015-03-28 | Add PKGCONFNAME to install dependencies. | David Watson | |
Attempting to use the install target before the make target works fine, except for the missing pkgconfig file. Adding that file to the dependencies for the install target to make sure it gets created first. | |||
2015-03-19 | Correct escaping for prefix in pkgconf file | Jan-Erik Rediger | |
2015-03-18 | Fix hiredis.pc generation. | Dan Skorupski | |
2015-03-03 | Fix pkgconf file: escaping needed | Dominique Leuenberger | |
Due to the various processors going over the command, we need more escaping. 1) Make parses it, so $${libdir} becomes ${libdir} 2) 'shell' parses it for the 'echo command', whereas echo ${libdir} would be an empty string; escape it as \${libdir} to ensure we get what we want. Closes #312 | |||
2015-02-12 | Fix pkgconf when used with DESTDIR | Matt Stancliff | |
Closes #302 | |||
2015-01-26 | Build test binary by default | Matt Stancliff | |
This is the only way to force a 32-bit build of the test binary | |||
2015-01-26 | Fix pkgconf build dependency | Matt Stancliff | |
We need to re-gen pkgconf when the version changes, and the version is kept in hiredis.h, so make pkgconf depend on hiredis.h. | |||
2015-01-26 | Fix Makefile install problems | Sebastian Wiedenroth | |
Adds DESTDIR support Fixes INSTALL_PKGCONF_PATH Properly copies {read,shs}.h now during make install Closes #297 | |||
2015-01-22 | Add valgrind to TravisCI testing | Matt Stancliff | |
2015-01-05 | Update dependency list in Makefile | Matt Stancliff | |
2015-01-05 | Build static library by default | Matt Stancliff | |
2015-01-05 | Generate pkgconf during build | Matt Stancliff | |
The pkgconf source is localized to the Makefile, so we're not dropping an unnecessary "hiredis.pc.in" in the source directory. Closes #129 Closes #136 | |||
2015-01-05 | Refactor reading code into read.c | tzickel | |
Makes hiredis reading functions easier to include in external projects [fixed all merge conflicts against current version] Closes #249 | |||
2015-01-05 | Add GLib 2.0 adapter | Christian Hergert | |
[Cleaned up Makefile and header includes. Didn't change crazy coding style because it's the convention for GLib systems.] Closes #83 Closes #71 | |||
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 | |