diff options
author | joerg <[email protected]> | 2015-04-27 12:41:06 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-04-27 12:41:06 +0000 |
commit | 871b26cc455ea4539f41477c92df042d654521b4 (patch) | |
tree | df2ca56818c0d6774892c93f163cd47a06e1456a | |
parent | 7ae8ce3958bfec745d9015b8ccb95a3cf48b89ca (diff) |
Disable tls_client on MinGW, missing netdb.h GH#82
-rw-r--r-- | src/cmd/tls_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/tls_client.cpp b/src/cmd/tls_client.cpp index a1a6c0c5f..44238ec64 100644 --- a/src/cmd/tls_client.cpp +++ b/src/cmd/tls_client.cpp @@ -6,7 +6,7 @@ #include "apps.h" -#if defined(BOTAN_HAS_TLS) && !defined(BOTAN_TARGET_OS_IS_WINDOWS) +#if defined(BOTAN_HAS_TLS) && !defined(BOTAN_TARGET_OS_IS_WINDOWS) && !defined(BOTAN_TARGET_OS_IS_MINGW) #include <botan/tls_client.h> #include <botan/pkcs8.h> #include <botan/hex.h> |