From 6778237e119ba28f4d8c1b3293ac9a148b408771 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 7 May 2014 13:42:34 +0200 Subject: Fix 694428: use system CURL library if available. --- Makerules | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makerules') diff --git a/Makerules b/Makerules index d52d5591..6b1b3afd 100644 --- a/Makerules +++ b/Makerules @@ -63,8 +63,13 @@ SYS_OPENSSL_CFLAGS = -DHAVE_OPENSSL $(shell pkg-config --cflags libcrypto) SYS_OPENSSL_LIBS = $(shell pkg-config --libs libcrypto) endif -# TODO: use pkg-config for system CURL +ifeq "$(shell pkg-config --exists libcurl && echo yes)" "yes" +HAVE_CURL = yes +SYS_CURL_CFLAGS = $(shell pkg-config --cflags libcurl) +SYS_CURL_LIBS = $(shell pkg-config --libs libcurl) +else SYS_CURL_DEPS = -lpthread -lrt +endif SYS_X11_CFLAGS = $(shell pkg-config --cflags x11 xext) SYS_X11_LIBS = $(shell pkg-config --libs x11 xext) -- cgit v1.2.3