We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a44b25c commit 1db300fCopy full SHA for 1db300f
src/Makevars.win
@@ -1 +1,5 @@
1
-PKG_LIBS = -lssl -lcrypto -lws2_32 -lgdi32 -lcrypt32 -lz
+ifeq (,$(shell pkg-config --version 2>/dev/null))
2
+ PKG_LIBS = -lssl -lcrypto -lws2_32 -lgdi32 -lcrypt32 -lz
3
+else
4
+ PKG_LIBS = $(shell pkg-config --libs openssl)
5
+endif
0 commit comments