applied patch 411059 (mingw win32 api version check)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9684 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -165,23 +165,8 @@
|
|||||||
#define va_list __gnuc_va_list
|
#define va_list __gnuc_va_list
|
||||||
#endif // HP-UX
|
#endif // HP-UX
|
||||||
|
|
||||||
// Cygwin / Mingw32 with gcc >= 2.95 use new windows headers which
|
#if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
|
||||||
// are more ms-like (header author is Anders Norlander, hence the name)
|
#include "wx/msw/gccpriv.h"
|
||||||
#if (defined(__MINGW32__) || defined(__CYGWIN__)) && ((__GNUC__>2) ||((__GNUC__==2) && (__GNUC_MINOR__>=95)))
|
|
||||||
#ifndef wxUSE_NORLANDER_HEADERS
|
|
||||||
#define wxUSE_NORLANDER_HEADERS 1
|
|
||||||
#endif
|
|
||||||
#else
|
|
||||||
#ifndef wxUSE_NORLANDER_HEADERS
|
|
||||||
#define wxUSE_NORLANDER_HEADERS 0
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// "old" GNUWIN32 is the one without Norlander's headers: it lacks the
|
|
||||||
// standard Win32 headers and we define the used stuff ourselves for it
|
|
||||||
// in wx/msw/gnuwin32/extra.h
|
|
||||||
#if defined(__GNUC__) && !wxUSE_NORLANDER_HEADERS
|
|
||||||
#define __GNUWIN32_OLD__
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
//////////////////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////////////////
|
||||||
|
@@ -128,19 +128,19 @@
|
|||||||
|
|
||||||
#ifdef StartDoc
|
#ifdef StartDoc
|
||||||
#undef StartDoc
|
#undef StartDoc
|
||||||
#ifdef __GNUG__
|
#if defined( __GNUG__ ) && !wxCHECK_W32API_VERSION( 0, 5 )
|
||||||
#define DOCINFOW DOCINFO
|
#define DOCINFOW DOCINFO
|
||||||
#define DOCINFOA DOCINFO
|
#define DOCINFOA DOCINFO
|
||||||
#endif
|
#endif
|
||||||
#ifdef _UNICODE
|
#ifdef _UNICODE
|
||||||
inline int StartDoc(HDC h, CONST DOCINFOW* info)
|
inline int StartDoc(HDC h, CONST DOCINFOW* info)
|
||||||
{
|
{
|
||||||
return StartDocW(h, info);
|
return StartDocW(h, (DOCINFOW*) info);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
inline int StartDoc(HDC h, CONST DOCINFOA* info)
|
inline int StartDoc(HDC h, CONST DOCINFOA* info)
|
||||||
{
|
{
|
||||||
return StartDocA(h, info);
|
return StartDocA(h, (DOCINFOA*) info);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@@ -155,6 +155,10 @@ typedef unsigned int UINT16;
|
|||||||
typedef short INT16;
|
typedef short INT16;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if defined( __GNUWIN32__ ) || defined( __MINGW32__ ) || defined( __CYGWIN__ )
|
||||||
|
#include <wx/msw/gccpriv.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
/* INT32 must hold at least signed 32-bit values. */
|
/* INT32 must hold at least signed 32-bit values. */
|
||||||
|
|
||||||
/* you may define INT32_DEFINED if it is already defined somewhere */
|
/* you may define INT32_DEFINED if it is already defined somewhere */
|
||||||
@@ -163,8 +167,10 @@ typedef short INT16;
|
|||||||
/* X11/xmd.h correctly defines INT32 */
|
/* X11/xmd.h correctly defines INT32 */
|
||||||
#define INT32_DEFINED
|
#define INT32_DEFINED
|
||||||
#elif (_MSC_VER >= 1200) || (__BORLANDC__ >= 0x550) || \
|
#elif (_MSC_VER >= 1200) || (__BORLANDC__ >= 0x550) || \
|
||||||
|
wxCHECK_W32API_VERSION( 0, 5 ) || \
|
||||||
((defined(__MINGW32__) || defined(__CYGWIN__)) \
|
((defined(__MINGW32__) || defined(__CYGWIN__)) \
|
||||||
&& ((__GNUC__>2) || ((__GNUC__==2) && (__GNUC_MINOR__>=95))))
|
&& ((__GNUC__>2) || ((__GNUC__==2) && (__GNUC_MINOR__>=95))))
|
||||||
|
|
||||||
/* INT32 is defined in windows.h for these compilers */
|
/* INT32 is defined in windows.h for these compilers */
|
||||||
#define INT32_DEFINED
|
#define INT32_DEFINED
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
@@ -93,6 +93,7 @@ DLLTOOL = $(CROSS)dlltool
|
|||||||
|
|
||||||
# Miscellaneous compiler options
|
# Miscellaneous compiler options
|
||||||
# GRG: the __MINGW32__ option is not needed anymore
|
# GRG: the __MINGW32__ option is not needed anymore
|
||||||
|
# add "-DHAVE_W32API_H" if you have w32api >= 0.5
|
||||||
OPTIONS = -DSTRICT # -D__MINGW32__
|
OPTIONS = -DSTRICT # -D__MINGW32__
|
||||||
|
|
||||||
# Debugging information
|
# Debugging information
|
||||||
|
@@ -55,8 +55,8 @@
|
|||||||
DEFINE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED)
|
DEFINE_EVENT_TYPE(wxEVT_DIALUP_CONNECTED)
|
||||||
DEFINE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED)
|
DEFINE_EVENT_TYPE(wxEVT_DIALUP_DISCONNECTED)
|
||||||
|
|
||||||
// Doesn't yet compile under VC++ 4, BC++, mingw, Watcom C++: no wininet.h
|
// Doesn't yet compile under VC++ 4, BC++, Watcom C++: no wininet.h
|
||||||
#if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !defined(__GNUWIN32__) && !defined(__WATCOMC__) && ! (defined(__VISUALC__) && (__VISUALC__ < 1020))
|
#if !defined(__BORLANDC__) && !defined(__GNUWIN32_OLD__) && !( defined(__GNUWIN32__) && !wxCHECK_W32API_VERSION( 0, 5 ) ) && !defined(__WATCOMC__) && ! (defined(__VISUALC__) && (__VISUALC__ < 1020))
|
||||||
|
|
||||||
#include <ras.h>
|
#include <ras.h>
|
||||||
#include <raserror.h>
|
#include <raserror.h>
|
||||||
|
Reference in New Issue
Block a user