-wxWindows 2.1 for Motif installation
+wxWindows 2.3 for Motif installation
------------------------------------
IMPORTANT NOTE:
When sending bug reports tell us what version of wxWindows you are
using (including the beta) and what compiler on what system. One
- example: wxMotif 2.1 beta 6, egcs 1.1.1, Redhat 5.0
+ example: wxMotif 2.3.0, egcs 1.1.1, Redhat 5.0
First steps
-----------
- Prerequisites: Motif 1.2 or above, or Lesstif
(not yet tested). Motif 2.0 and above may also be suitable.
-- Download the appropriate .tgz archive, or alternatively the files
- wx2_x_y_gen.zip and wx2_x_y_mot.zip. Download documentation in a
- preferred format, such as wx2_x_y_htm.zip or wx2_x_y_pdf.zip.
+- Download wxMotif-x.y.z.tgz, where x.y.z is the version number.
+ Download documentation in a preferred format, such as
+ wxWindows-HTML.zip or wxWindows-PDF.zip.
- Make a directory such as ~/wx and unarchive the files into this
- directory. If using the zip archives, 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.
-
- (See http://www.cdrom.com/pub/infozip/ if you don't have zip/unzip
- already installed. Zip isn't the same as gzip!)
+ directory.
- It is recommended that you install bison and flex; using yacc
and lex may require tweaking of the makefiles. You also need
./configure options
If you want to use system's C and C++ compiler,
-set environment variables CC and CCC as
+set environment variables CXX and CC as
% setenv CC cc
- % setenv CCC CC
+ % setenv CXX CC
% ./configure options
to see all the options please use:
Using this way, a make file for the minimal sample would look
like this
-CC = g++
+CXX = g++
minimal: minimal.o
- $(CC) -o minimal minimal.o `wx-config --libs`
+ $(CXX) -o minimal minimal.o `wx-config --libs`
minimal.o: minimal.cpp mondrian.xpm
- $(CC) `wx-config --cflags` -c minimal.cpp -o minimal.o
+ $(CXX) `wx-config --cflags` -c minimal.cpp -o minimal.o
clean:
rm -f *.o minimal