Browse Source

Add SSL support to curl build

tags/v0.5.1
Andrew Belt 7 years ago
parent
commit
a538fad3fc
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      dep/Makefile
  2. +1
    -1
      src/app.cpp

+ 1
- 1
dep/Makefile View File

@@ -117,7 +117,7 @@ $(libcurl):
$(UNTAR) curl-7.56.0.tar.gz $(UNTAR) curl-7.56.0.tar.gz
cd curl-7.56.0 && ./configure --prefix="$(LOCAL)" \ cd curl-7.56.0 && ./configure --prefix="$(LOCAL)" \
--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-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 \
--without-zlib --without-ssl --without-ca-bundle --without-ca-path --without-ca-fallback --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2
--without-zlib --without-ca-bundle --without-ca-fallback --without-libpsl --without-libmetalink --without-libssh2 --without-librtmp --without-winidn --without-libidn2 --without-nghttp2
$(MAKE) -C curl-7.56.0 $(MAKE) -C curl-7.56.0
$(MAKE) -C curl-7.56.0 install $(MAKE) -C curl-7.56.0 install




+ 1
- 1
src/app.cpp View File

@@ -10,7 +10,7 @@ std::string gApplicationVersion =
#else #else
""; "";
#endif #endif
std::string gApiHost = "http://api.vcvrack.com";
std::string gApiHost = "https://api.vcvrack.com";


RackWidget *gRackWidget = NULL; RackWidget *gRackWidget = NULL;
Toolbar *gToolbar = NULL; Toolbar *gToolbar = NULL;


Loading…
Cancel
Save