reopen 417522 ! found 417522 0.8.0-3 thanks * Debian Bug Tracking System <[EMAIL PROTECTED]> [2007-05-04 06:25]: > * Added gcc4.3-fixes based the patch by tbm. > (closes: #417522)
It seems the new upstream release introduced some more problems, and some because of the new 4.3 version I'm using. Here's a patch: --- src/core/qgslogger.h~ 2007-05-04 08:19:41.000000000 +0000 +++ src/core/qgslogger.h 2007-05-04 08:19:49.000000000 +0000 @@ -18,6 +18,7 @@ #ifndef QGSLOGGER_H #define QGSLOGGER_H +#include <cstdlib> #include <iostream> #include <sstream> #include <QString> --- src/composer/qgscomposition.cpp~ 2007-05-04 08:30:45.000000000 +0000 +++ src/composer/qgscomposition.cpp 2007-05-04 08:30:54.000000000 +0000 @@ -32,6 +32,7 @@ #include <cstdlib> #include <iostream> +#include <typeinfo> QgsCompositionPaper::QgsCompositionPaper ( QString name, int w, int h, bool c) :mName(name), mWidth(w), mHeight(h), mCustom(c) --- src/plugins/grass/qgsgrassmapcalc.cpp~ 2007-05-04 08:58:48.000000000 +0000 +++ src/plugins/grass/qgsgrassmapcalc.cpp 2007-05-04 08:58:57.000000000 +0000 @@ -13,6 +13,7 @@ * * *************************************************************************/ #include <iostream> +#include <typeinfo> #include <qapplication.h> #include <qstringlist.h> --- src/plugins/grass/qgsgrassmodule.cpp~ 2007-05-04 09:00:36.000000000 +0000 +++ src/plugins/grass/qgsgrassmodule.cpp 2007-05-04 09:00:44.000000000 +0000 @@ -14,6 +14,7 @@ * * ***************************************************************************/ #include <iostream> +#include <typeinfo> #include <qapplication.h> #include <qdir.h> -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

