Fix for bug 406258 . zlib doe snot compile with VC9 . r=nelson,wtc

This commit is contained in:
julien.pierre.boogz%sun.com 2007-12-01 02:16:10 +00:00
Родитель d2a330da14
Коммит 560531d9eb
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -8,7 +8,7 @@
subject to change. Applications should only use zlib.h.
*/
/* @(#) $Id: zutil.h,v 1.6 2005-07-20 20:32:42 wtchang%redhat.com Exp $ */
/* @(#) $Id: zutil.h,v 1.7 2007-12-01 02:16:10 julien.pierre.boogz%sun.com Exp $ */
#ifndef ZUTIL_H
#define ZUTIL_H
@ -175,7 +175,8 @@ extern const char * const z_errmsg[10]; /* indexed by 2-zlib_error */
/* functions */
#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550) || \
(defined(_MSC_VER) && _MSC_VER >= 1500)
# ifndef HAVE_VSNPRINTF
# define HAVE_VSNPRINTF
# endif