Turn off IPv6 in windows for now

It's horribly broken
AG: issue seems to be size of the addr struct as suggested on the list
This commit is contained in:
Joakim Soderberg 2014-04-24 14:47:10 +02:00 committed by Andy Green
parent 590fb70102
commit 46e48868ac

View file

@ -69,6 +69,11 @@ endif()
set(LWS_OPENSSL_CLIENT_CERTS ../share CACHE PATH "Server SSL certificate directory")
if (WIN32)
set(LWS_OPENSSL_CLIENT_CERTS . CACHE PATH "Client SSL certificate directory")
if (LWS_IPV6)
set(LWS_IPV6 OFF)
message(WARNING "IPv6 does currently not work on Windows!")
endif()
else()
set(LWS_OPENSSL_CLIENT_CERTS /etc/pki/tls/certs/ CACHE PATH "Client SSL certificate directory")
endif()