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 18c76abab31ebe62d6f33048896901b88e2a3c34
parent 4808365f8a1e37b3ac6fbb2649303e124ef12eb7
Author: Joris Vink <joris@coders.se>
Date:   Mon, 28 Oct 2019 12:18:15 +0100

use curl-config instead of pkg-config.

Diffstat:
Makefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -104,8 +104,8 @@ endif ifneq ("$(CURL)", "") S_SRC+=src/curl.c - KORE_CURL_LIB?=$(shell pkg-config --libs libcurl) - KORE_CURL_INC?=$(shell pkg-config --cflags libcurl) + KORE_CURL_LIB?=$(shell curl-config --libs) + KORE_CURL_INC?=$(shell curl-config --cflags) LDFLAGS+=$(KORE_CURL_LIB) CFLAGS+=$(KORE_CURL_INC) -DKORE_USE_CURL FEATURES+=-DKORE_USE_CURL