--------------Boundary-00=_Y8X5HU70XG50U810AL70 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi! I finally got karbon14 to compile on IRIX using MIPSpro. My fix for the f= irst problematic spot (vcanvas.cc) has been included already; thanks whoever d= id it. I attached a patch for the secon compile error which occures in karbon_view.cc. When i start karbon i got the following message in the konsole: xlib_rgb_init: compiled for little endian, but this is a big endian machi= ne. I did look where this might happen and i found a few spots where the endi= anes matters: art_rgb.c in karbon/render und lib/kopainter. I also found the s= ame in libart_lgpl. I already checked in config.h whether #define WORDS_BIGEN= DIAN 1 is defined. i also did a recompile with --enable-debug=3Dfull but i did= not get a more detailed error message. Can anybody give any hint where i coul= d look any further? Thanks! Andy -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (IRIX64) iD8DBQE+FiOWWZhxXlcCT4ERAjULAJ91vATZcBuwNpBpR/huTNEClTvWjQCggFDR rma/1UFJb8iY2ZUql46WT6w=3D =3Ds3Ig -----END PGP SIGNATURE----- --------------Boundary-00=_Y8X5HU70XG50U810AL70 Content-Type: text/x-diff; charset="us-ascii"; name="karbon_irix_patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="karbon_irix_patch" --- karbon_view.cc.orig Mon Dec 2 13:04:41 2002 +++ karbon_view.cc Fri Jan 3 09:14:28 2003 @@ -275,9 +275,12 @@ // TODO : better use eps export? // TODO : use real page layout stuff QPtrListIterator i = m_part->document().layers(); - for ( ; i.current(); ++i ) - //if ( i.current()->visible() ) - i.current()->draw( &p, &KoRect::fromQRect( QRect( 0, 0, width(), height() ) ) ); + for ( ; i.current(); ++i ) { + // i.current()->draw( &p, &KoRect::fromQRect( QRect( 0, 0, width(), height() ) ) ); + QRect qrect( 0, 0, width(), height() ); + KoRect korect = KoRect::fromQRect(qrect); + i.current()->draw( &p, &korect ); +} p.end(); } --------------Boundary-00=_Y8X5HU70XG50U810AL70-- ____________________________________ koffice mailing list koffice@mail.kde.org To unsubscribe please visit: http://mail.kde.org/mailman/listinfo/koffice