Browse Source

Use --with-ssl, remove PKG_CONFIG_PATH environment variable

tags/v0.6.1
Andrew Belt 6 years ago
parent
commit
8dee77ef27
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      dep/Makefile

+ 2
- 2
dep/Makefile View File

@@ -95,10 +95,10 @@ $(openssl):
$(libcurl): $(openssl)
$(WGET) "https://curl.haxx.se/download/curl-7.59.0.tar.gz"
$(UNTAR) curl-7.59.0.tar.gz
cd curl-7.59.0 && PKG_CONFIG_PATH="$(realpath $(DEP_LOCAL))/lib/pkgconfig" $(CONFIGURE) \
cd curl-7.59.0 && PKG_CONFIG_PATH= $(CONFIGURE) \
--disable-ftp --disable-file --disable-ldap --disable-ldaps --disable-rtsp --disable-proxy --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smb --disable-smtp --disable-gopher --disable-manual --disable-shared \
--without-zlib --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2 --without-brotli \
--without-ca-bundle --with-ca-fallback --with-ssl
--without-ca-bundle --with-ca-fallback --with-ssl=$(realpath $(DEP_LOCAL))
$(MAKE) -C curl-7.59.0
$(MAKE) -C curl-7.59.0 install



Loading…
Cancel
Save