]> git.saurik.com Git - wxWidgets.git/commitdiff
Committing in .
authorJouk Jansen <joukj@hrem.nano.tudelft.nl>
Thu, 25 Jul 2002 13:18:52 +0000 (13:18 +0000)
committerJouk Jansen <joukj@hrem.nano.tudelft.nl>
Thu, 25 Jul 2002 13:18:52 +0000 (13:18 +0000)
 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

setup.h_vms
src/common/descrip.mms
src/unix/utilsunx.cpp

index 4aa0e67498fe47e448fd913b9e0923a3e5e9ca98..3216cd9b7fd2ff271035390df388acf4f6fb448e 100644 (file)
  */
 #define HAVE_BOOL
 
+/*
+ * Define if your compiler supports the explicit keyword
+ */
+#define HAVE_EXPLICIT 1
+
 /*
  * Use regex support
  */
index a4a2fdc2c2d00d1f7254cba3f8a0ccd07c5fc5cb..ff2d3245711371f5f3be4d684ed08b7a1b815c1a 100644 (file)
@@ -119,6 +119,7 @@ OBJECTS1=fs_inet.obj,\
                menucmn.obj,\
                mimecmn.obj,\
                module.obj,\
+               msgout.obj,\
                mstream.obj,\
                nbkbase.obj,\
                object.obj,\
@@ -240,6 +241,7 @@ SOURCES = \
                menucmn.cpp,\
                mimecmn.cpp,\
                module.cpp,\
+               msgout.cpp,\
                mstream.cpp,\
                nbkbase.cpp,\
                object.cpp,\
@@ -399,6 +401,7 @@ memory.obj : memory.cpp
 menucmn.obj : menucmn.cpp
 mimecmn.obj : mimecmn.cpp
 module.obj : module.cpp
+msgout.obj : msgout.cpp
 mstream.obj : mstream.cpp
 nbkbase.obj : nbkbase.cpp
 object.obj : object.cpp
index c7f527e9b29b16d55a65469dbe26a21380cbf485..97f764b829e7fc012113d3f142df218ceec74f8d 100644 (file)
@@ -582,6 +582,9 @@ private:
 // ----------------------------------------------------------------------------
 // wxExecute: the real worker function
 // ----------------------------------------------------------------------------
+#ifdef __VMS
+#pragma message disable codeunreachable
+#endif
 
 long wxExecute(wxChar **argv,
                int flags,
@@ -847,6 +850,9 @@ long wxExecute(wxChar **argv,
 
     return ERROR_RETURN_CODE;
 }
+#ifdef __VMS
+#pragma message enable codeunreachable
+#endif
 
 #undef ERROR_RETURN_CODE
 #undef ARGS_CLEANUP