Ticket #4670: boost-config.patch

File boost-config.patch, 787 bytes (added by cvclarke@…, 12 years ago)

Patch for boost/config/compiler/gcc.hpp

  • boost/config/compiler/gcc.hpp

    diff -dur boost_1_44_0.unpatched/boost/config/compiler/gcc.hpp boost_1_44_0/boost/config/compiler/gcc.hpp
    old new  
    113113// Dynamic shared object (DSO) and dynamic-link library (DLL) support
    114114//
    115115#if __GNUC__ >= 4
    116 #  if defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
     116#  if (defined(_WIN32) || defined(__WIN32__) || defined(WIN32)) && !defined(__CYGWIN__) // temp
    117117     // All Win32 development environments, including 64-bit Windows and MinGW, define
    118118     // _WIN32 or one of its variant spellings. Note that Cygwin is a POSIX environment,
    119119     // so does not define _WIN32 or its variants.