diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2014-05-07 13:42:34 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2014-05-07 13:42:34 +0200 |
commit | 6778237e119ba28f4d8c1b3293ac9a148b408771 (patch) | |
tree | 926af43581af9c2332ec324ae4ade41fd42171f2 /Makerules | |
parent | 6d92ef42d2c04e7c0aac9fe5b7da8e8771d7bd99 (diff) | |
download | mupdf-6778237e119ba28f4d8c1b3293ac9a148b408771.tar.xz |
Fix 694428: use system CURL library if available.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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) |