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

@ -48,7 +48,7 @@ If you want to remove wxWidgets on Unix you can do this:
-----------------
If you want to do some more serious cross-platform programming with wxWidgets,
such as for GTK and Motif, you can now build two complete libraries and use
such as for GTK and X11, you can now build two complete libraries and use
them concurrently. For this end, you have to create a directory for each build
of wxWidgets - you may also want to create different versions of wxWidgets
and test them concurrently. Most typically, this would be a version configured
@ -57,9 +57,9 @@ be installed, so you'd have to use local version of the library for that purpose
For building three versions (one GTK, one WINE and a debug version of the WINE
source) you'd do this:
md buildmotif
cd buildmotif
../configure --with-motif
md buildx11
cd buildx11
../configure --with-x11
make
cd ..