moved __STDC_EXT__ definition for HP-UX from configure to wx/platform.h, like this we can do it only if it's not alraedy defined by the compiler
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -471,6 +471,14 @@
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/*
|
||||
We get "Large Files (ILP32) not supported in strict ANSI mode." #error
|
||||
from HP-UX standard headers when compiling with g++ without this:
|
||||
*/
|
||||
#if defined(__HPUX__) && !defined(__STDC_EXT__)
|
||||
# define __STDC_EXT__ 1
|
||||
#endif
|
||||
|
||||
/* Force linking against required libraries under Windows CE: */
|
||||
#ifdef __WXWINCE__
|
||||
# include "wx/msw/wince/libraries.h"
|
||||
|
Reference in New Issue
Block a user