diff options
author | fredrossperry <fredrossperry@gmail.com> | 2015-12-16 09:33:25 -0800 |
---|---|---|
committer | fredrossperry <fredrossperry@gmail.com> | 2016-03-23 08:44:54 -0700 |
commit | 297cffcee181bbb584dfc77bf1acd27029f60f2f (patch) | |
tree | a83551ea3ba31ac960927d71069849a37bf98bd0 | |
parent | 47078209046ed26ff7828a73d5d43afe08a6941d (diff) | |
download | mupdf-297cffcee181bbb584dfc77bf1acd27029f60f2f.tar.xz |
Don’t include openssl by default in the OS X build.
-rw-r--r-- | Makerules | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -53,8 +53,14 @@ else ifeq "$(OS)" "MACOS" HAVE_X11 ?= yes +# Mac OS X deprecated openssl, so the default is to not include it. +HAVE_OPENSSL ?= no +SYS_OPENSSL_CFLAGS = +SYS_OPENSSL_LIBS = +ifeq "$(HAVE_OPENSSL)" "yes" SYS_OPENSSL_CFLAGS = -DHAVE_OPENSSL SYS_OPENSSL_LIBS = -lcrypto +endif SYS_CURL_DEPS = -lpthread |