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 | |
parent | 6d92ef42d2c04e7c0aac9fe5b7da8e8771d7bd99 (diff) | |
download | mupdf-6778237e119ba28f4d8c1b3293ac9a148b408771.tar.xz |
Fix 694428: use system CURL library if available.
-rw-r--r-- | Makerules | 7 | ||||
-rw-r--r-- | Makethird | 7 |
2 files changed, 10 insertions, 4 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) @@ -454,6 +454,10 @@ CURL_CFLAGS := -I$(CURL_DIR)/include CURL_LIBS := $(SYS_CURL_DEPS) HAVE_CURL := yes + +else ifeq "$(HAVE_CURL)" "yes" +CURL_CFLAGS := $(SYS_CURL_CFLAGS) +CURL_LIBS := $(SYS_CURL_LIBS) endif # --- X11 --- @@ -461,7 +465,4 @@ endif ifeq "$(HAVE_X11)" "yes" X11_CFLAGS := $(SYS_X11_CFLAGS) X11_LIBS := $(SYS_X11_LIBS) -else -X11_CFLAGS := -X11_LIBS := endif |