commit | abda06acb910a82c31c341a82b29db1864abbb9d | [log] [tgz] |
---|---|---|
author | Adam Tkac <atkac@redhat.com> | Mon Feb 21 14:10:31 2011 +0000 |
committer | Adam Tkac <atkac@redhat.com> | Mon Feb 21 14:10:31 2011 +0000 |
tree | c0a2849f61da99bee14e4e1f4bf4c78aa374f14f | |
parent | 39d7dc043afcf6f94b9c16942765fdb9a6a3202e [diff] [blame] |
[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
diff --git a/config.h.cmake.in b/config.h.cmake.in index 6b1ca3d..fef3649 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