summaryrefslogtreecommitdiff
path: root/Makerules
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2017-01-17 22:49:16 +0100
committerTor Andersson <tor.andersson@artifex.com>2017-01-17 23:15:57 +0100
commit353d1f9ea3f7977dd7c25c68166aa0a7a96cb4f9 (patch)
treed6693a2dfdb1242990748fd464f8cc5a8bd04c37 /Makerules
parent9ca75aa716c2441ae5359417f83ff10cd295abc1 (diff)
downloadmupdf-353d1f9ea3f7977dd7c25c68166aa0a7a96cb4f9.tar.xz
Only use openssl 1.0.1t and earlier.
Later versions are incompatible with how we call it.
Diffstat (limited to 'Makerules')
-rw-r--r--Makerules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makerules b/Makerules
index d75a6115..29051d8e 100644
--- a/Makerules
+++ b/Makerules
@@ -110,7 +110,7 @@ else ifeq "$(OS)" "Linux"
HAVE_PTHREADS ?= yes
-ifeq "$(shell pkg-config --exists libcrypto && echo yes)" "yes"
+ifeq "$(shell pkg-config --exists 'libcrypto <= 1.0.1t' && echo yes)" "yes"
HAVE_LIBCRYPTO = yes
SYS_LIBCRYPTO_CFLAGS = -DHAVE_LIBCRYPTO $(shell pkg-config --cflags libcrypto)
SYS_LIBCRYPTO_LIBS = $(shell pkg-config --libs libcrypto)