Browse Source

Remove OpenSSL from deps on Win.

tags/v1.1.2
Andrew Belt 5 years ago
parent
commit
07025fc492
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      Makefile
  2. +1
    -1
      dep/Makefile

+ 2
- 2
Makefile View File

@@ -38,8 +38,8 @@ endif
ifdef ARCH_WIN
SOURCES += dep/osdialog/osdialog_win.c
LDFLAGS += -Wl,--export-all-symbols,--out-implib,libRack.a -mwindows \
dep/lib/libglew32.a dep/lib/libglfw3.a dep/lib/libjansson.a dep/lib/libspeexdsp.a dep/lib/libzip.a dep/lib/libz.a dep/lib/libcurl.a dep/lib/libssl.a dep/lib/libcrypto.a dep/lib/librtaudio.a dep/lib/librtmidi.a \
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid -ldbghelp
dep/lib/libglew32.a dep/lib/libglfw3.a dep/lib/libjansson.a dep/lib/libspeexdsp.a dep/lib/libzip.a dep/lib/libz.a dep/lib/libcurl.a dep/lib/librtaudio.a dep/lib/librtmidi.a \
-lpthread -lopengl32 -lgdi32 -lws2_32 -lcomdlg32 -lole32 -lcrypt32 -ldsound -lwinmm -lksuser -lshlwapi -lmfplat -lmfuuid -lwmcodecdspuuid -ldbghelp
TARGET := Rack.exe
OBJECTS += Rack.res
endif


+ 1
- 1
dep/Makefile View File

@@ -131,7 +131,7 @@ CURL_DEPS += $(openssl)
# CURL_FLAGS += --with-secure-transport
endif
ifdef ARCH_WIN
CURL_FLAGS += --with-schannel
CURL_FLAGS += --with-schannel --without-ssl
endif

$(libcurl): $(CURL_DEPS) curl-7.64.1


Loading…
Cancel
Save