diff options
author | Pierre Ossman <ossman@cendio.se> | 2011-03-08 15:38:38 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2011-03-08 15:38:38 +0000 |
commit | 06084f46a1c3cbd650b25f078276ee9f61418d3b (patch) | |
tree | 15d74cc8e22fc4da644d13f023fb6bf9ea390c79 /common | |
parent | d0f0f034d2bcb1da5569c10ecc4588bba34c30c0 (diff) | |
download | tigervnc-06084f46a1c3cbd650b25f078276ee9f61418d3b.tar.gz tigervnc-06084f46a1c3cbd650b25f078276ee9f61418d3b.zip |
We don't need to special case Windows anymore now since we have proper
checks for old GnuTLS in CMake.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4333 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common')
-rw-r--r-- | common/os/tls.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/common/os/tls.h b/common/os/tls.h index f6b5550f..6920bb0d 100644 --- a/common/os/tls.h +++ b/common/os/tls.h @@ -23,11 +23,7 @@ #include <config.h> #endif -/* - * Windows builds are build against fairly new GNUTLS, ignore compatibility - * code. - */ -#if defined(HAVE_GNUTLS) && !defined(WIN32) +#if defined(HAVE_GNUTLS) #include <gnutls/gnutls.h> #ifndef HAVE_GNUTLS_DATUM_T |