DJGPP compilation fixes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -139,6 +139,8 @@ inline int Stricmp(const char *psz1, const char *psz2)
|
|||||||
return stricmp(psz1, psz2);
|
return stricmp(psz1, psz2);
|
||||||
#elif defined(__WATCOMC__)
|
#elif defined(__WATCOMC__)
|
||||||
return stricmp(psz1, psz2);
|
return stricmp(psz1, psz2);
|
||||||
|
#elif defined(__DJGPP__)
|
||||||
|
return stricmp(psz1, psz2);
|
||||||
#elif defined(__EMX__)
|
#elif defined(__EMX__)
|
||||||
return stricmp(psz1, psz2);
|
return stricmp(psz1, psz2);
|
||||||
#elif defined(__WXPM__)
|
#elif defined(__WXPM__)
|
||||||
|
@@ -439,7 +439,7 @@ typedef unsigned __WCHAR_TYPE__ wxUChar;
|
|||||||
|
|
||||||
// define wxStricmp for various compilers without Unicode possibilities
|
// define wxStricmp for various compilers without Unicode possibilities
|
||||||
#if !defined(wxStricmp) && !wxUSE_UNICODE
|
#if !defined(wxStricmp) && !wxUSE_UNICODE
|
||||||
# if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__) || defined(__VISAGECPP__) || defined(__EMX__)
|
# if defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__SALFORDC__) || defined(__VISAGECPP__) || defined(__EMX__) || defined(__DJGPP__)
|
||||||
# define wxStricmp stricmp
|
# define wxStricmp stricmp
|
||||||
# define wxStrnicmp strnicmp
|
# define wxStrnicmp strnicmp
|
||||||
# elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS__) && defined(__INTEL__))
|
# elif defined(__SC__) || defined(__VISUALC__) || (defined(__MWERKS__) && defined(__INTEL__))
|
||||||
|
@@ -133,7 +133,7 @@ extern const wxChar WXDLLEXPORT *wxEmptyString = &g_strEmpty.dummy;
|
|||||||
#endif //compiler
|
#endif //compiler
|
||||||
#endif // no vsnprintf
|
#endif // no vsnprintf
|
||||||
|
|
||||||
#ifdef _AIX
|
#if defined(_AIX) || defined(__DJGPP__)
|
||||||
// AIX has vsnprintf, but there's no prototype in the system headers.
|
// AIX has vsnprintf, but there's no prototype in the system headers.
|
||||||
extern "C" int vsnprintf(char* str, size_t n, const char* format, va_list ap);
|
extern "C" int vsnprintf(char* str, size_t n, const char* format, va_list ap);
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user