1Notes for wxWidgets compilation on AIX
2--------------------------------------
3
4wxWidgets 2.0 has been compiled under AIX with the C set ++ 3.1.
5
6The environment variables CC and CXX should be set accordingly before running
7configure for the first time:
8
9For Bourne shell (sh, ksh, zsh, bash) users:
10
11	CC=xlc ; export CC
12	CXX=xlC ; export CXX
13
14For C shell (csh, tcsh) users:
15
16	setenv CC xlc
17	setenv CXX xlC
18