diff options
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/test/IceSSL/configuration/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/test/IceSSL/configuration/Makefile b/cpp/test/IceSSL/configuration/Makefile index b0c096e4731..05b3ca3cd99 100644 --- a/cpp/test/IceSSL/configuration/Makefile +++ b/cpp/test/IceSSL/configuration/Makefile @@ -37,6 +37,10 @@ ifeq ($(UNAME),Darwin) LINK_WITH = -framework Security -framework CoreFoundation endif +ifeq ($(UNAME),MINGW) +LINK_WITH = $(SSL_OS_LIBS) +endif + $(CLIENT): $(COBJS) rm -f $@ $(call mktest,$@,$(COBJS),$(ICESSL_LIBS) $(LINK_WITH) $(LIBS)) |