forked from dmajkic/redis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote branch 'upstream/master'
Conflicts: deps/linenoise/linenoise.c src/Makefile src/anet.c src/networking.c src/redis-check-dump.c src/redis-cli.c src/redis.c src/replication.c src/ziplist.c src/zmalloc.c src/zmalloc.h
- Loading branch information
Showing
87 changed files
with
5,739 additions
and
1,473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/hiredis-test | ||
/hiredis-example* | ||
/*.o | ||
/*.so | ||
/*.dylib | ||
/*.a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Copyright (c) 2006-2009, Salvatore Sanfilippo | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | ||
|
||
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | ||
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | ||
* Neither the name of Redis nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# Hiredis Makefile | ||
# Copyright (C) 2010 Salvatore Sanfilippo <antirez at gmail dot com> | ||
# This file is released under the BSD license, see the COPYING file | ||
|
||
OBJ = net.o hiredis.o sds.o async.o | ||
BINS = hiredis-example hiredis-test | ||
|
||
uname_S := $(shell sh -c 'uname -s 2>/dev/null || echo not') | ||
osname := $(shell uname -rs | cut -f 1-2 -d "." | cut -f 1 -d "-") | ||
OPTIMIZATION?=-O2 | ||
ifeq ($(uname_S),SunOS) | ||
CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -fPIC -Wall -W -D__EXTENSIONS__ -D_XPG6 | ||
CCLINK?= -ldl -lnsl -lsocket -lm -lpthread | ||
DYLIBNAME?=libhiredis.so | ||
DYLIB_MAKE_CMD?=gcc -shared -Wl,-soname,${DYLIBNAME} -o ${DYLIBNAME} ${OBJ} | ||
STLIBNAME?=libhiredis.a | ||
STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} | ||
else ifeq ($(uname_S),Darwin) | ||
CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -fPIC -Wall -W -Wwrite-strings $(ARCH) $(PROF) | ||
CCLINK?= -lm -pthread | ||
OBJARCH?= -arch i386 -arch x86_64 | ||
DYLIBNAME?=libhiredis.dylib | ||
DYLIB_MAKE_CMD?=libtool -dynamic -o ${DYLIBNAME} -lm ${DEBUG} - ${OBJ} | ||
STLIBNAME?=libhiredis.a | ||
STLIB_MAKE_CMD?=libtool -static -o ${STLIBNAME} - ${OBJ} | ||
else ifeq ($(osname),MINGW32_NT) | ||
CFLAGS?= -std=gnu99 -pedantic $(OPTIMIZATION) -Wall -W -Wwrite-strings $(ARCH) $(PROF) | ||
CCLINK?= -mthreads | ||
LIBS?= -lws2_32 | ||
DYLIBNAME?=libhiredis.dll | ||
DYLIB_MAKE_CMD?=gcc -shared -Wl,-soname,${DYLIBNAME} -o ${DYLIBNAME} ${OBJ} ${LIBS} | ||
STLIBNAME?=libhiredis.a | ||
STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} | ||
CC=gcc | ||
else | ||
CFLAGS?= -std=c99 -pedantic $(OPTIMIZATION) -fPIC -Wall -W -Wwrite-strings $(ARCH) $(PROF) | ||
CCLINK?= -lm -pthread | ||
DYLIBNAME?=libhiredis.so | ||
DYLIB_MAKE_CMD?=gcc -shared -Wl,-soname,${DYLIBNAME} -o ${DYLIBNAME} ${OBJ} | ||
STLIBNAME?=libhiredis.a | ||
STLIB_MAKE_CMD?=ar rcs ${STLIBNAME} ${OBJ} | ||
endif | ||
CCOPT= $(CFLAGS) $(CCLINK) $(ARCH) $(PROF) | ||
DEBUG?= -g -ggdb | ||
|
||
PREFIX?= /usr/local | ||
INSTALL_INC= $(PREFIX)/include/hiredis | ||
INSTALL_LIB= $(PREFIX)/lib | ||
INSTALL= cp -a | ||
|
||
all: ${DYLIBNAME} ${BINS} | ||
|
||
# Deps (use make dep to generate this) | ||
net.o: net.c fmacros.h net.h | ||
async.o: async.c async.h hiredis.h sds.h util.h | ||
example-libev.o: example-libev.c hiredis.h async.h adapters/libev.h | ||
example-libevent.o: example-libevent.c hiredis.h async.h adapters/libevent.h | ||
example.o: example.c hiredis.h | ||
hiredis.o: hiredis.c hiredis.h net.h sds.h util.h | ||
sds.o: sds.c sds.h | ||
test.o: test.c hiredis.h | ||
|
||
${DYLIBNAME}: ${OBJ} | ||
${DYLIB_MAKE_CMD} | ||
|
||
${STLIBNAME}: ${OBJ} | ||
${STLIB_MAKE_CMD} | ||
|
||
dynamic: ${DYLIBNAME} | ||
static: ${STLIBNAME} | ||
|
||
# Binaries: | ||
hiredis-example-libevent: example-libevent.o ${DYLIBNAME} | ||
$(CC) -o $@ $(CCOPT) $(DEBUG) -L. -lhiredis -levent -Wl,-rpath,. example-libevent.c ${LIBS} | ||
|
||
hiredis-example-libev: example-libev.o ${DYLIBNAME} | ||
$(CC) -o $@ $(CCOPT) $(DEBUG) -L. -lhiredis -lev -Wl,-rpath,. example-libev. c ${LIBS} | ||
|
||
hiredis-%: %.o ${DYLIBNAME} | ||
$(CC) -o $@ $(CCOPT) $(DEBUG) -L. -lhiredis -Wl,-rpath,. $< | ||
|
||
test: hiredis-test | ||
./hiredis-test | ||
|
||
.c.o: | ||
$(CC) -c $(CFLAGS) $(OBJARCH) $(DEBUG) $(COMPILE_TIME) $< | ||
|
||
clean: | ||
rm -rf ${DYLIBNAME} ${STLIBNAME} $(BINS) hiredis-example* *.o *.gcda *.gcno *.gcov *.dll *.exe | ||
|
||
dep: | ||
$(CC) -MM *.c | ||
|
||
install: ${DYLIBNAME} ${STLIBNAME} | ||
mkdir -p $(INSTALL_INC) $(INSTALL_LIB) | ||
$(INSTALL) hiredis.h async.h adapters $(INSTALL_INC) | ||
$(INSTALL) ${DYLIBNAME} ${STLIBNAME} $(INSTALL_LIB) | ||
|
||
32bit: | ||
@echo "" | ||
@echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386" | ||
@echo "" | ||
make ARCH="-m32" | ||
|
||
gprof: | ||
make PROF="-pg" | ||
|
||
gcov: | ||
make PROF="-fprofile-arcs -ftest-coverage" | ||
|
||
noopt: | ||
make OPTIMIZATION="" |
Oops, something went wrong.