summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-05-29 10:01:59 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-05-29 10:01:59 +0200
commitec55f364751749dfbda1192d3368be771ed5b5a5 (patch)
treeae68506c79ccf76905fe3844bc26da67ac2dbed1 /Makefile
parenta29d92e6cd33325a21974b15a788bbe94736f59b (diff)
downloadmupdf-ec55f364751749dfbda1192d3368be771ed5b5a5.tar.xz
Add rules to configure and build openssl if it is present in thirdparty.
Also sets the -DHAVE_OPENSSL flag.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 7cfbdb3d..7138936b 100644
--- a/Makefile
+++ b/Makefile
@@ -23,18 +23,21 @@ THIRD_LIBS += $(FREETYPE_LIB)
THIRD_LIBS += $(JBIG2DEC_LIB)
THIRD_LIBS += $(JPEG_LIB)
THIRD_LIBS += $(OPENJPEG_LIB)
+THIRD_LIBS += $(OPENSSL_LIB)
THIRD_LIBS += $(ZLIB_LIB)
LIBS += $(FREETYPE_LIBS)
LIBS += $(JBIG2DEC_LIBS)
LIBS += $(JPEG_LIBS)
LIBS += $(OPENJPEG_LIBS)
+LIBS += $(OPENSSL_LIBS)
LIBS += $(ZLIB_LIBS)
CFLAGS += $(FREETYPE_CFLAGS)
CFLAGS += $(JBIG2DEC_CFLAGS)
CFLAGS += $(JPEG_CFLAGS)
CFLAGS += $(OPENJPEG_CFLAGS)
+CFLAGS += $(OPENSSL_CFLAGS)
CFLAGS += $(ZLIB_CFLAGS)
ifeq "$(verbose)" ""