]> git.pld-linux.org Git - packages/mupdf.git/blob - mupdf-curl.patch
- new
[packages/mupdf.git] / mupdf-curl.patch
1 --- mupdf-1.3-source/Makerules.orig     2013-11-01 20:37:30.098722412 +0100
2 +++ mupdf-1.3-source/Makerules  2013-11-01 20:53:10.238682958 +0100
3 @@ -56,6 +56,8 @@
4  endif
5  
6  SYS_CURL_DEPS = -lpthread -lrt
7 +SYS_CURL_CFLAGS = $(shell pkg-config --cflags libcurl)
8 +SYS_CURL_LIBS = $(shell pkg-config --libs libcurl) -lpthread
9  
10  SYS_X11_CFLAGS = $(shell pkg-config --cflags x11 xext)
11  SYS_X11_LIBS = $(shell pkg-config --libs x11 xext)
12 --- mupdf-1.3-source/Makethird.orig     2013-11-01 20:54:35.492012714 +0100
13 +++ mupdf-1.3-source/Makethird  2013-11-01 20:54:07.405347226 +0100
14 @@ -444,5 +444,6 @@
15  CURL_CFLAGS := -I$(CURL_DIR)/include
16  CURL_LIBS := $(SYS_CURL_DEPS)
17  else
18 -NOCURL := yes
19 +CURL_CFLAGS := $(SYS_CURL_CFLAGS)
20 +CURL_LIBS := $(SYS_CURL_LIBS)
21  endif
This page took 0.045364 seconds and 3 git commands to generate.