-wxWindows 2.2 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.2.0, egcs 1.1.1, Redhat 5.0
+ example: wxMotif 2.3.0, egcs 1.1.1, Redhat 5.0
First steps
-----------
./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