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 8fe16c193a7c35e3c4b59f234ebb2821d894c261
parent ffe3fdc49dd77278beb8ca83e01b49e8d25fb057
Author: Joris Vink <joris@coders.se>
Date:   Mon, 24 Nov 2014 11:31:50 +0100

Link with -lcrypto even for BENCHMARK

Diffstat:
Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -26,7 +26,7 @@ endif ifneq ("$(BENCHMARK)", "") CFLAGS+=-DKORE_BENCHMARK - LDFLAGS=-rdynamic -lz + LDFLAGS=-rdynamic -lz -lcrypto endif ifneq ("$(PGSQL)", "")