|
View:
New views
3 Messages
—
Rating Filter:
Alert me
|
|
|
XFC 4.3.2 releasedHi ...
All my changes have been applied, and I have made a new dev. release. The site is updated too ! The primary news is gtksourceview, debian building and fixes. Enjoy /BL _______________________________________________ Xfc-dev mailing list Xfc-dev@... http://foo-projects.org/mailman/listinfo/xfc-dev |
|
|
Re: XFC 4.3.2 releasedAm Thu, 19 Apr 2007 17:14:44 +0200
schrieb Bo Lorentsen <bl@...>: > Hi ... > > All my changes have been applied, and I have made a new dev. release. > The site is updated too ! > > The primary news is gtksourceview, debian building and fixes. > > Enjoy > > /BL > _______________________________________________ > Xfc-dev mailing list > Xfc-dev@... > http://foo-projects.org/mailman/listinfo/xfc-dev Thanks that the developement startet again. I've build myself the x86_64 package for ArchLinux. It breaks like this with gcc 4.1.2: if g++ -DHAVE_CONFIG_H -I. -I. -I../../.. -I../../../libXFCcore -I../../../libXFCui -g -O2 -Wall -ansi --pedantic-errors -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/atk-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DPNG_NO_MMX_CODE -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/libpng12 -g -O2 -Wall -ansi --pedantic-errors -MT selection.o -MD -MP -MF ".deps/selection.Tpo" -c -o selection.o selection.cc; \ then mv -f ".deps/selection.Tpo" ".deps/selection.Po"; else rm -f ".deps/selection.Tpo"; exit 1; fi selection.cc: In member function 'virtual void RetrieveSelectionButton::on_selection_received(const Xfc::Gtk::SelectionData&, unsigned int)': selection.cc:50: error: cast from 'unsigned char*' to 'unsigned int' loses precision make[4]: *** [selection.o] Error 1 We need to apply the appended patch to get it built. Andreas Radke [selection.cc.64bit.patch] --- examples/howto/selection/selection.cc 2007-04-19 00:18:26.000000000 +0200 +++ examples/howto/selection/selection.cc.new 2007-04-19 22:02:11.000000000 +0200 @@ -47,7 +47,7 @@ cout << " * type() = " << selection_data.get_type() << endl; cout << " * format() = " << selection_data.format() << endl; cout.setf(ios_base::hex, ios_base::basefield); - cout << " * data() = 0x" << reinterpret_cast<unsigned int>(selection_data.data()) << endl; + cout << " * data() = 0x" << reinterpret_cast<unsigned long>(selection_data.data()) << endl; cout.setf(ios_base::dec, ios_base::basefield); cout << " * length() = " << selection_data.length() << endl << endl; _______________________________________________ Xfc-dev mailing list Xfc-dev@... http://foo-projects.org/mailman/listinfo/xfc-dev |
|
|
Re: XFC 4.3.2 releasedAndreas Radke wrote:
> > We need to apply the appended patch to get it built. Thanks for the patch, it have been applied to the svn trunk ! I have not tried 64 bit yet, but I am happy to see others have :-) /BL _______________________________________________ Xfc-dev mailing list Xfc-dev@... http://foo-projects.org/mailman/listinfo/xfc-dev |
| Free embeddable forum powered by Nabble | Forum Help |