1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0030091: Configuration - allow cross-compilation from Linux (case sensitive filesystem) to x86_64-w64-mingw32

Names of Windows header files are corrected to be lower case to match their actual names on Windows (except Windows.h) and MinGW.
Files COMMANDWINDOW.h and MAINWINDOW.h in Draw package are renamed to CamelCase according to names of corresponding CXX files.
This commit is contained in:
abv 2018-09-06 18:59:19 +03:00 committed by bugmaster
parent 112139f00a
commit 5fecc4953b
14 changed files with 15 additions and 15 deletions

View File

@ -63,7 +63,7 @@ if (WIN32)
set (CSF_gdi32 "gdi32.lib") set (CSF_gdi32 "gdi32.lib")
set (CSF_user32 "user32.lib") set (CSF_user32 "user32.lib")
set (CSF_wsock32 "wsock32.lib") set (CSF_wsock32 "wsock32.lib")
set (CSF_psapi "Psapi.lib") set (CSF_psapi "psapi.lib")
set (CSF_d3d9 "D3D9.lib") set (CSF_d3d9 "D3D9.lib")
if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore" OR USE_GLES2) if ("${CMAKE_SYSTEM_NAME}" STREQUAL "WindowsStore" OR USE_GLES2)
set (CSF_OpenGlLibs "libEGL libGLESv2") set (CSF_OpenGlLibs "libEGL libGLESv2")

View File

@ -17,9 +17,9 @@
#ifdef _WIN32 #ifdef _WIN32
#include <windows.h> #include <windows.h>
#include <CommandWindow.h> #include <COMMANDWINDOW.h>
#include <Draw_Window.hxx> #include <Draw_Window.hxx>
#include <MainWindow.h> #include <MAINWINDOW.h>
#include <Draw_Appli.hxx> #include <Draw_Appli.hxx>
#include <TCollection_AsciiString.hxx> #include <TCollection_AsciiString.hxx>

View File

@ -1,5 +1,5 @@
CommandWindow.cxx CommandWindow.cxx
COMMANDWINDOW.h CommandWindow.h
Draw.cxx Draw.cxx
Draw.hxx Draw.hxx
Draw_Appli.hxx Draw_Appli.hxx
@ -75,4 +75,4 @@ DrawRessource.h
init.cxx init.cxx
init.h init.h
MainWindow.cxx MainWindow.cxx
MAINWINDOW.h MainWindow.h

View File

@ -26,7 +26,7 @@
/* /*
** PROCEDURES DE MAIN WINDOW ** PROCEDURES DE MAIN WINDOW
*/ */
#include <Windows.h> #include <windows.h>
LRESULT APIENTRY WndProc(HWND, UINT, WPARAM, LPARAM); LRESULT APIENTRY WndProc(HWND, UINT, WPARAM, LPARAM);
BOOL CreateProc(HWND); BOOL CreateProc(HWND);

View File

@ -61,7 +61,7 @@ Standard_Boolean OSD::CStringToReal(const Standard_CString aString,
//======================================================================= //=======================================================================
#ifdef _WIN32 #ifdef _WIN32
# include <Windows.h> # include <windows.h>
# define SLEEP(NSEC) Sleep(1000*(NSEC)) # define SLEEP(NSEC) Sleep(1000*(NSEC))
#else #else
#include <unistd.h> #include <unistd.h>

View File

@ -448,7 +448,7 @@ void OSD_Error::Perror() {
#include <TCollection_ExtendedString.hxx> #include <TCollection_ExtendedString.hxx>
#include <windows.h> #include <windows.h>
#include <Strsafe.h> #include <strsafe.h>
typedef struct _error_table { typedef struct _error_table {

View File

@ -34,7 +34,7 @@
#include <stdio.h> #include <stdio.h>
#include <io.h> #include <io.h>
#include <Strsafe.h> #include <strsafe.h>
#define ACE_HEADER_SIZE (sizeof(ACCESS_ALLOWED_ACE) - sizeof (DWORD)) #define ACE_HEADER_SIZE (sizeof(ACCESS_ALLOWED_ACE) - sizeof (DWORD))

View File

@ -379,7 +379,7 @@ Standard_Integer OSD_FileNode::Error()const{
# include <tchar.h> # include <tchar.h>
#endif // _INC_TCHAR #endif // _INC_TCHAR
#include <Strsafe.h> #include <strsafe.h>
#define TEST_RAISE( arg ) _test_raise ( fName, ( arg ) ) #define TEST_RAISE( arg ) _test_raise ( fName, ( arg ) )
#define RAISE( arg ) throw Standard_ProgramError ( ( arg ) ) #define RAISE( arg ) throw Standard_ProgramError ( ( arg ) )

View File

@ -18,7 +18,7 @@
#include <winbase.h> #include <winbase.h>
#include <process.h> #include <process.h>
#include <malloc.h> #include <malloc.h>
#include <Psapi.h> #include <psapi.h>
#ifdef _MSC_VER #ifdef _MSC_VER
#pragma comment(lib, "Psapi.lib") #pragma comment(lib, "Psapi.lib")
#endif #endif

View File

@ -182,7 +182,7 @@ Standard_Integer OSD_Process::Error()const{
#include <TCollection_ExtendedString.hxx> #include <TCollection_ExtendedString.hxx>
#include <OSD_WNT.hxx> #include <OSD_WNT.hxx>
#include <LMCONS.H> // for UNLEN - maximum user name length GetUserName() #include <lmcons.h> // for UNLEN - maximum user name length GetUserName()
void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... ); void _osd_wnt_set_error ( OSD_Error&, OSD_WhoAmI, ... );

View File

@ -23,7 +23,7 @@
/***/ /***/
#include <OSD_WNT.hxx> #include <OSD_WNT.hxx>
#include <Strsafe.h> #include <strsafe.h>
#include <wchar.h> #include <wchar.h>
#include <stdlib.h> #include <stdlib.h>

View File

@ -39,7 +39,7 @@ Standard_Boolean OSD::ToCatchFloatingSignals()
#endif #endif
#include <windows.h> #include <windows.h>
#include <Strsafe.h> #include <strsafe.h>
#ifndef STATUS_FLOAT_MULTIPLE_FAULTS #ifndef STATUS_FLOAT_MULTIPLE_FAULTS
// <ntstatus.h> // <ntstatus.h>

View File

@ -35,7 +35,7 @@ extern "C" int getpagesize() ;
#endif #endif
#ifdef _WIN32 #ifdef _WIN32
#include <Strsafe.h> #include <strsafe.h>
#endif #endif
//====================================================================== //======================================================================
// Assumptions // Assumptions