kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit f707749cf448161947b7a81601fb4325bbdc5c2d
parent 124f3ecad938ec0a544f2b23b57a966895efa75f
Author: Joris Vink <joris@coders.se>
Date:   Wed, 26 Jun 2013 19:05:54 +0200

no longer hold static openssl libs in the repo.

Diffstat:
Makefile | 3+--
libs/libcrypto.a | 0
libs/libssl.a | 0
3 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -8,11 +8,10 @@ S_SRC+= src/kore.c src/buf.c src/config.c src/net.c src/spdy.c src/http.c \ src/worker.c src/connection.c src/zlib_dict.c S_OBJS= $(S_SRC:.c=.o) -CFLAGS+=-I/usr/local/ssl/include CFLAGS+=-Wall -Wstrict-prototypes -Wmissing-prototypes CFLAGS+=-Wmissing-declarations -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+=-Wsign-compare -Iincludes -g -LDFLAGS+=-rdynamic -Llibs -lssl -lcrypto -lz +LDFLAGS+=-rdynamic -lssl -lcrypto -lz default: @echo "Please specify a build target [linux | bsd]" diff --git a/libs/libcrypto.a b/libs/libcrypto.a Binary files differ. diff --git a/libs/libssl.a b/libs/libssl.a Binary files differ.