1998-11-04 22:17:19 +00:00
|
|
|
wxWindows 2.0 for Motif installation
|
|
|
|
------------------------------------
|
|
|
|
|
1998-12-12 10:01:41 +00:00
|
|
|
- Prerequisites: Motif 1.2 or above, or Lesstif
|
|
|
|
(not yet tested). Motif 2.0 and above may also be suitable.
|
1998-11-04 22:17:19 +00:00
|
|
|
|
|
|
|
- Download the files wx200gen.zip and wx200mot.zip, and
|
|
|
|
documentation in a preferred format, such as wx200htm.zip
|
|
|
|
or wx200pdf.zip.
|
|
|
|
|
|
|
|
- Make a directory such as ~/wx and unzip the files into this
|
|
|
|
directory. Use the -a option if available to convert the ASCII
|
|
|
|
files to Unix format. Don't worry about files being
|
|
|
|
overwritten: they should be identical anyway.
|
|
|
|
|
1998-12-12 10:01:41 +00:00
|
|
|
COMPILING USING CONFIGURE
|
|
|
|
|
|
|
|
- You can use the wxGTK configure system to make wxMotif, or
|
|
|
|
you can follow the following steps to use the simpler (but
|
|
|
|
less automatic) makefile system. If using configure, the
|
|
|
|
following script should make the library and samples, when
|
|
|
|
run from the top-level wxWindows directory (see also 'makewx'
|
|
|
|
in this directory):
|
|
|
|
|
|
|
|
# Make wxMotif using the configure system
|
|
|
|
chmod a+x install/unix/config.sub
|
|
|
|
install/unix/setup/general/* \
|
|
|
|
install/unix/config.guess install/unix/setup/shared/*
|
|
|
|
cd install/unix
|
|
|
|
autoconf && ./configure --with-shared --with-motif --with-debug_flag \
|
|
|
|
--with-debug_info --without-threads
|
|
|
|
cd ../..
|
|
|
|
make makefiles
|
|
|
|
make
|
|
|
|
|
|
|
|
COMPILING USING MAKEFILES
|
|
|
|
|
|
|
|
- Choose a .env file from src/makeenvs that matches your
|
|
|
|
environment, and copy it to src/make.env. These are the
|
|
|
|
settings read by wxWindows for Motif makefiles.
|
|
|
|
|
1998-11-04 22:17:19 +00:00
|
|
|
- Edit src/make.env to change options according to your local
|
1998-11-09 11:57:05 +00:00
|
|
|
environment. In particular, change WXDIR to where wxWindows is
|
1998-12-11 16:09:06 +00:00
|
|
|
found on your system, or set the WXWIN environment variable
|
|
|
|
before compilation, e.g.:
|
|
|
|
|
|
|
|
export WXWIN=/home/jacs/wx2
|
|
|
|
|
1998-11-09 11:57:05 +00:00
|
|
|
Later, there will be a better makefile system
|
1998-11-04 22:17:19 +00:00
|
|
|
and/or alternate make.env files as per wxWindows 1.68.
|
|
|
|
Please feel free to contribute settings files for your environment.
|
|
|
|
|
|
|
|
- Change directory to src/motif and type:
|
|
|
|
|
|
|
|
make -f makefile.unx motif
|
|
|
|
|
|
|
|
This should make the library libwx_motif.a in the lib
|
|
|
|
directory.
|
|
|
|
|
|
|
|
- Make a sample, such as the minimal sample:
|
|
|
|
|
|
|
|
cd samples/minimal
|
|
|
|
make -f makefile.unx motif
|
|
|
|
|
|
|
|
and run the resulting minimal_motif binary.
|
|
|
|
|
|
|
|
Notes:
|
|
|
|
------
|
|
|
|
|
|
|
|
- Better installation and makefile systems are
|
1998-12-12 10:01:41 +00:00
|
|
|
required. Although the wxGTK config system can be used to make
|
|
|
|
wxMotif and samples, it can't easily be made to work
|
|
|
|
with applications outside the wxWindows hierarchy. Hence the
|
|
|
|
simple makefile system.
|
1998-11-04 22:17:19 +00:00
|
|
|
|
1998-11-09 11:57:05 +00:00
|
|
|
- Debugging mode is switched on by default. To compile in non-debug
|
|
|
|
mode, remove the -D__WXDEBUG__ switch in make.env.
|
|
|
|
|
1998-11-04 22:17:19 +00:00
|
|
|
- Some classes can be switched off in include/wx/motif/setup.h,
|
|
|
|
if you are having trouble with a particular file. However,
|
|
|
|
I'd prefer you to fix the problem and send the fix to me :-) or at
|
|
|
|
least let me know about it.
|
|
|
|
|
1998-12-15 17:47:11 +00:00
|
|
|
- If you have trouble compiling the file y_tab.c, or have strange
|
|
|
|
linking errors, check whether you're using a C or C++ compiler for this file.
|
|
|
|
You should specify a C compiler in the CCLEX variable in src/make.env.
|
|
|
|
|
1998-11-17 23:03:15 +00:00
|
|
|
- If you run into problems with a missing X11/Xpm.h header, you
|
|
|
|
need to install the XPM package. It can be obtained from:
|
|
|
|
|
|
|
|
ftp://ftp.x.org/contrib/libraries/xpm-3.4k.tar.gz
|
1998-12-12 10:01:41 +00:00
|
|
|
http://sunfreeware.com
|
|
|
|
|
|
|
|
You may need to modify make.env to add -I and -L options pointing to where Xpm
|
|
|
|
is installed and possibly change bitmap.cpp to
|
|
|
|
include <xpm.h> instead of <X11/xpm.h>
|
1998-11-17 23:03:15 +00:00
|
|
|
|
|
|
|
Alternatively, edit include/motif/setup.h, set wxUSE_XPM
|
|
|
|
to 0, and recompile. You will not be able to load any XPMs,
|
|
|
|
though (currently the only supported colour bitmap format).
|
|
|
|
|
1998-11-04 22:17:19 +00:00
|
|
|
- Please send bug reports with a description of your environment,
|
1998-11-09 11:57:05 +00:00
|
|
|
compiler and the error message(s) to the wxwin-users mailing list at:
|
1998-11-04 22:17:19 +00:00
|
|
|
|
1998-11-09 11:57:05 +00:00
|
|
|
wxwin-users@wx.dent.med.uni-muenchen.de
|
1998-11-04 22:17:19 +00:00
|
|
|
|
|
|
|
|
1998-12-12 10:01:41 +00:00
|
|
|
Julian Smart, December 1998.
|
1998-11-09 11:57:05 +00:00
|
|
|
julian.smart@ukonline.co.uk
|