Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorVojtech Kral <vojtech@kral.hk>2018-03-13 15:41:19 +0300
committerbubnikv <bubnikv@gmail.com>2018-03-13 15:41:19 +0300
commit0781dd8271ad2388a065fd4cac94407ba7d550c7 (patch)
treea3c0f1d0d2d15746de174fb8c89a8816f4aa4392 /doc
parentbd61c233a592d17b342cf7484a3dbba93d072d0e (diff)
Fix unix build: set openssl path directly rather than via pkg-config (#789)
Diffstat (limited to 'doc')
-rw-r--r--doc/deps-build/unix-static/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/deps-build/unix-static/Makefile b/doc/deps-build/unix-static/Makefile
index e7588b994..71e46320b 100644
--- a/doc/deps-build/unix-static/Makefile
+++ b/doc/deps-build/unix-static/Makefile
@@ -82,11 +82,11 @@ $(OPENSSL).tar.gz:
libcurl: libopenssl $(CURL).tar.gz
tar -zxvf $(CURL).tar.gz
-# XXX: disable shared?
-# Setting PKG_CONFIG_PATH should make libcurl find our previously built openssl
- cd $(CURL) && PKG_CONFIG_PATH=$(DESTDIR)/usr/local/lib/pkgconfig ./configure \
+# Note: It seems setting custom openssl path doesn't work when pkg-config and system openssl devel libs are installed
+ cd $(CURL) && ./configure \
--enable-static \
--enable-shared \
+ --with-ssl=$(DESTDIR)/usr/local \
--with-pic \
--enable-ipv6 \
--enable-versioned-symbols \