Committing in .
Updated OpenVMS compile support: setip.h_vms : added definition of wxExplicit descrip.mms : added msgout.cpp utilsunx.cpp : supressed unreacheable code warning in one routine by OpenVMS only #pragma's. Modified Files: wxWindows/setup.h_vms wxWindows/src/common/descrip.mms wxWindows/src/unix/utilsunx.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16274 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -140,6 +140,11 @@
|
|||||||
*/
|
*/
|
||||||
#define HAVE_BOOL
|
#define HAVE_BOOL
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Define if your compiler supports the explicit keyword
|
||||||
|
*/
|
||||||
|
#define HAVE_EXPLICIT 1
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Use regex support
|
* Use regex support
|
||||||
*/
|
*/
|
||||||
|
@@ -119,6 +119,7 @@ OBJECTS1=fs_inet.obj,\
|
|||||||
menucmn.obj,\
|
menucmn.obj,\
|
||||||
mimecmn.obj,\
|
mimecmn.obj,\
|
||||||
module.obj,\
|
module.obj,\
|
||||||
|
msgout.obj,\
|
||||||
mstream.obj,\
|
mstream.obj,\
|
||||||
nbkbase.obj,\
|
nbkbase.obj,\
|
||||||
object.obj,\
|
object.obj,\
|
||||||
@@ -240,6 +241,7 @@ SOURCES = \
|
|||||||
menucmn.cpp,\
|
menucmn.cpp,\
|
||||||
mimecmn.cpp,\
|
mimecmn.cpp,\
|
||||||
module.cpp,\
|
module.cpp,\
|
||||||
|
msgout.cpp,\
|
||||||
mstream.cpp,\
|
mstream.cpp,\
|
||||||
nbkbase.cpp,\
|
nbkbase.cpp,\
|
||||||
object.cpp,\
|
object.cpp,\
|
||||||
@@ -399,6 +401,7 @@ memory.obj : memory.cpp
|
|||||||
menucmn.obj : menucmn.cpp
|
menucmn.obj : menucmn.cpp
|
||||||
mimecmn.obj : mimecmn.cpp
|
mimecmn.obj : mimecmn.cpp
|
||||||
module.obj : module.cpp
|
module.obj : module.cpp
|
||||||
|
msgout.obj : msgout.cpp
|
||||||
mstream.obj : mstream.cpp
|
mstream.obj : mstream.cpp
|
||||||
nbkbase.obj : nbkbase.cpp
|
nbkbase.obj : nbkbase.cpp
|
||||||
object.obj : object.cpp
|
object.obj : object.cpp
|
||||||
|
@@ -582,6 +582,9 @@ private:
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// wxExecute: the real worker function
|
// wxExecute: the real worker function
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message disable codeunreachable
|
||||||
|
#endif
|
||||||
|
|
||||||
long wxExecute(wxChar **argv,
|
long wxExecute(wxChar **argv,
|
||||||
int flags,
|
int flags,
|
||||||
@@ -847,6 +850,9 @@ long wxExecute(wxChar **argv,
|
|||||||
|
|
||||||
return ERROR_RETURN_CODE;
|
return ERROR_RETURN_CODE;
|
||||||
}
|
}
|
||||||
|
#ifdef __VMS
|
||||||
|
#pragma message enable codeunreachable
|
||||||
|
#endif
|
||||||
|
|
||||||
#undef ERROR_RETURN_CODE
|
#undef ERROR_RETURN_CODE
|
||||||
#undef ARGS_CLEANUP
|
#undef ARGS_CLEANUP
|
||||||
|
Reference in New Issue
Block a user