Remove support for wxMotif

This port hasn't been updated for ages and is not used by anybody any
longer, so remove its code to facilitate maintenance.

Also remove references to this port from the documentation and most of
the other places (VMS-specific descrip.vms files still check for it
because it's not clear how to update them all), including configure.

Regenerate the latter and rebake all makefiles.

Finally document that this port is not available any longer.
This commit is contained in:
Vadim Zeitlin 2022-10-16 02:34:40 +02:00
parent 041060d0de
commit 0ef1cdcc21
437 changed files with 411 additions and 44740 deletions

View file

@ -46,10 +46,6 @@ hvApp::hvApp()
bool hvApp::OnInit()
{
#ifdef __WXMOTIF__
delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
#endif
wxArtProvider::Push(new AlternateArtProvider);
int istyle = wxHF_DEFAULT_STYLE;
@ -209,10 +205,6 @@ bool hvApp::OnInit()
m_helpController->AddBook(fileName);
}
#ifdef __WXMOTIF__
delete wxLog::SetActiveTarget(new wxLogGui);
#endif
m_helpController->DisplayContents();
return true;
@ -303,7 +295,7 @@ if ( id == artId ) return wxBitmap(xpmRc##_xpm);
// wxIcon ctor. This depends on the platform:
#if defined(__WXUNIVERSAL__)
#define CREATE_STD_ICON(iconId, xpmRc) return wxNullBitmap;
#elif defined(__WXGTK__) || defined(__WXMOTIF__)
#elif defined(__WXGTK__)
#define CREATE_STD_ICON(iconId, xpmRc) return wxBitmap(xpmRc##_xpm);
#else
#define CREATE_STD_ICON(iconId, xpmRc) \