diff options
author | Adam Tkac <atkac@redhat.com> | 2011-02-21 14:10:31 +0000 |
---|---|---|
committer | Adam Tkac <atkac@redhat.com> | 2011-02-21 14:10:31 +0000 |
commit | abda06acb910a82c31c341a82b29db1864abbb9d (patch) | |
tree | c0a2849f61da99bee14e4e1f4bf4c78aa374f14f /config.h.cmake.in | |
parent | 39d7dc043afcf6f94b9c16942765fdb9a6a3202e (diff) | |
download | tigervnc-abda06acb910a82c31c341a82b29db1864abbb9d.tar.gz tigervnc-abda06acb910a82c31c341a82b29db1864abbb9d.zip |
[Bugfix] Visual Studio needs stddef.h include to get size_t definition.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4305 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'config.h.cmake.in')
-rw-r--r-- | config.h.cmake.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config.h.cmake.in b/config.h.cmake.in index 6b1ca3d3..fef36495 100644 --- a/config.h.cmake.in +++ b/config.h.cmake.in @@ -7,5 +7,6 @@ /* MS Visual Studio 2008 and newer doesn't know ssize_t */ #if defined(HAVE_GNUTLS) && defined(WIN32) && !defined(__MINGW32__) +#include <stddef.h> typedef size_t ssize_t; #endif |