Am Samstag, 7. Februar 2004 15:07 schrieb Angus Leeming: > Sivan Toledo wrote: > > I am using 2.95 since I was not able to compile Qt with 3.3. > > > There are a number of threads on this ml about the steps that they > needed to take to get the compiler and STLPort's library working > happily together. Executive summary: they succeeded ;-)
A short summary: you need to install stlport somewhere. Then you invoke configure with ./configure $YOUR_USUAL_OPTIONS --with-extra-inc=/usr/include/stlport CXXFLAGS="-DCXX_GLOBAL_CSTD -ftemplate-depth-30 -nostdinc++" LDFLAGS="-lstlport -lm" Of course you have to adapt the stlport include dir. You may also need different libs in LDFLAGS if configure fails and complains that the c compiler cannot produce executables. config.log will tell what libs are needed in this case. But I wonder why you are not trying to fix the qt build with gcc 3.3? Since qt x11 on unix builds with gcc 3.3 this should be possible, or did you hit some serious problem? Georg