Various patches to get the current CVS compile on OpenVMS
Modified Files:
wxWindows/setup.h_vms wxWindows/src/generic/descrip.mms
wxWindows/src/gtk/app.cpp wxWindows/src/unix/threadpsx.cpp
----------------------------------------------------------------------
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14051
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
/*
* MS Icons and Cursors format support
*/
/*
* MS Icons and Cursors format support
*/
/*
* Disable this if your compiler can't cope
/*
* Disable this if your compiler can't cope
helpext.obj,\
helphtml.obj,\
helpwxht.obj,\
helpext.obj,\
helphtml.obj,\
helpwxht.obj,\
imaglist.obj,\
laywin.obj,\
listctrl.obj,\
imaglist.obj,\
laywin.obj,\
listctrl.obj,\
helpext.cpp,\
helphtml.cpp,\
helpwxht.cpp,\
helpext.cpp,\
helphtml.cpp,\
helpwxht.cpp,\
imaglist.cpp,\
laywin.cpp,\
listctrl.cpp,\
imaglist.cpp,\
laywin.cpp,\
listctrl.cpp,\
helpext.obj : helpext.cpp
helphtml.obj : helphtml.cpp
helpwxht.obj : helpwxht.cpp
helpext.obj : helpext.cpp
helphtml.obj : helphtml.cpp
helpwxht.obj : helpwxht.cpp
-helpxlp.obj : helpxlp.cpp
imaglist.obj : imaglist.cpp
laywin.obj : laywin.cpp
listctrl.obj : listctrl.cpp
imaglist.obj : imaglist.cpp
laywin.obj : laywin.cpp
listctrl.obj : listctrl.cpp
#pragma implementation "app.h"
#endif
#pragma implementation "app.h"
#endif
+#ifdef __VMS
+#include <vms_jackets.h>
+#endif
+
#include "wx/app.h"
#include "wx/gdicmn.h"
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/gdicmn.h"
#include "wx/utils.h"
#endif
#include <unistd.h>
#endif
#include <unistd.h>
+#ifdef __VMS
+# include <poll.h>
+#else
+# include <sys/poll.h>
+#endif
#include "wx/gtk/win_gtk.h"
#include <gtk/gtk.h>
#include "wx/gtk/win_gtk.h"
#include <gtk/gtk.h>
#pragma implementation "app.h"
#endif
#pragma implementation "app.h"
#endif
+#ifdef __VMS
+#include <vms_jackets.h>
+#endif
+
#include "wx/app.h"
#include "wx/gdicmn.h"
#include "wx/utils.h"
#include "wx/app.h"
#include "wx/gdicmn.h"
#include "wx/utils.h"
#endif
#include <unistd.h>
#endif
#include <unistd.h>
+#ifdef __VMS
+# include <poll.h>
+#else
+# include <sys/poll.h>
+#endif
#include "wx/gtk/win_gtk.h"
#include <gtk/gtk.h>
#include "wx/gtk/win_gtk.h"
#include <gtk/gtk.h>
wxMutexGuiLeave();
bool isDetached = m_isDetached;
wxMutexGuiLeave();
bool isDetached = m_isDetached;
- wxThreadIdType id = GetId();
+ wxThreadIdType id = (wxThreadIdType) GetId();
wxLogTrace(TRACE_THREADS,
_T("Starting to wait for thread %ld to exit."), id);
wxLogTrace(TRACE_THREADS,
_T("Starting to wait for thread %ld to exit."), id);
wxThreadIdType wxThread::GetId() const
{
wxThreadIdType wxThread::GetId() const
{
- return m_internal->GetId();
+ return (wxThreadIdType) m_internal->GetId();
}
// -----------------------------------------------------------------------------
}
// -----------------------------------------------------------------------------