Re: #include-ing wxWidgets
Hmm... that's strange.
You definitely have the libraries that include those missing symbols (e.g. the wxAppConsole stuff is in libwx_based-2.8.a), and g++ is definitely finding the libraries at the paths you gave it (otherwise it would complain that it doesn't).
My only suggestion is to try tweaking the order of things in your command line. I remember having some strange errors in the past that got resolved my changing around the order of things in the command line.
The makefile for the wxWidgets program that I'm developing has this order:
Code:
g++ [all options except libraries] -o [output file] [source files] [libraries]
where libraries are all the .a files and all the options starting with -l.
If changing your command line to match that order doesn't work, I'm out of ideas - try asking for helping in the wxWidgets forums or the wxWidgets mailing list.
Old Unix programmers never die, they just mv to /dev/null