tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

msvc-vsnprintf.patch (578B)


      1 --- zlib-1.2.5/zutil.h	2010-04-18 12:29:24 -0700
      2 +++ zlib/zutil.h	2010-08-21 18:07:03 -0700
      3 @@ -172,17 +172,18 @@
      4 #endif
      5 
      6 #ifndef F_OPEN
      7 #  define F_OPEN(name, mode) fopen((name), (mode))
      8 #endif
      9 
     10          /* functions */
     11 
     12 -#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550)
     13 +#if defined(STDC99) || (defined(__TURBOC__) && __TURBOC__ >= 0x550) || \
     14 +   (defined(_MSC_VER) && _MSC_VER >= 1500)
     15 #  ifndef HAVE_VSNPRINTF
     16 #    define HAVE_VSNPRINTF
     17 #  endif
     18 #endif
     19 #if defined(__CYGWIN__)
     20 #  ifndef HAVE_VSNPRINTF
     21 #    define HAVE_VSNPRINTF
     22 #  endif