Hi
Just wanted to mention that to be able to compile OpenDX under Debian
potato, using gcc/g++ (gcc version 2.95.2 19991109) I had to use the
-fpermissive option to be able to compile the C++ files. I don't
know alot about autoconf/automake, but maybe someone can do something
about it (I just set CXX=g++ -fpermissive). I also ran into a snag in
src/ui++/base/Application.h line 55 (OpenDX 4.04, but it hadn't
changed in 4.09), which reads
friend void main(unsigned int argc,
char** argv);
but should, as far as I can see be
friend int main(unsigned int argc,
char** argv);
/Samuel Meder