I ran into this on Fedora 13,
[HOST-CC] tools/cabman/cabinet.cxx
tools/cabman/cabinet.cxx: In member function ‘bool
CCabinet::CreateSimpleCabinet()’:
tools/cabman/cabinet.cxx:2177: error: no matching function for call to
‘stat::stat(char [260], stat*)’
/usr/include/bits/stat.h:40: note: candidates are: stat::stat()
/usr/include/bits/stat.h:40: note: stat::stat(const stat&)
from http://code.google.com/p/libproxy/issues/detail?id=122 the patch
is based on this;
http://code.google.com/p/libproxy/issues/attachmentText?id=122&aid=20023750…
Index: tools/cabman/cabinet.cxx
===================================================================
--- tools/cabman/cabinet.cxx (revision 48297)
+++ tools/cabman/cabinet.cxx (working copy)
@@ -21,7 +21,8 @@
#if !defined(WIN32)
# include <dirent.h>
#endif
-#if defined(__FreeBSD__) || defined(__APPLE__)
+#if !defined(WIN32) || defined(__FreeBSD__) || defined(__APPLE__)
+# include <sys/types.h>
# include <sys/stat.h>
#endif // __FreeBSD__
#include "cabinet.h"
Not sure this is right, so~ posted here for fast review and fix,
James
fireball(a)svn.reactos.org schrieb:
> - Fix incorrect function definitions. To be submitted upstream.
>
>
I remember just recently joking about all our "Needs to be ...",
"Someone should ...", "Please someone ..." commit messages, which
usually mean "I'm too lazy to ..." and result in things never being done ;-)
Timo
Hi!
2010/7/30 Jérôme Gardou <jerome.gardou(a)laposte.net>:
> That's why I began to revert all of this stuff, which is horrible :-)
> Regards.
> Jérôme.
>
Oh! That is great news! Good work!
James
Hi all,
After ongoing sudden crashes on our third server Rose (currently only
serving the BuildBot and primary DNS), I highly suspect a hardware failure.
This is why I'll let the hosting provider conduct a hardware stress test
tomorrow and eventually replace broken parts.
So don't be surprised if these services are down tomorrow.
I'll do my best to get them up reliably again as soon as possible.
Cheers,
Colin
Opensource World Conference (Malaga, 2010), is accepting papers for the meeting that is going to take place on 27/28 October.
"The Open Source World Conference (OSWC) is probably the most important European event related to open source technologies.
Following six editions of this conference organized by the regional governments of Andalusia and Extremadura in collaboration with the most important companies in the sector, this conference has become a unique event open to everyone interested in the field of software innovation, from users, social agents and developers, through to business leaders, investors and members of public administrations."
Andalusia and Extremadura governments are pushing quite hard toward the Opensource administration.They are working together to use just Opensource apps and OSes in their Universities and Administrations. Actually they have created some Opensource OSes as Guadalinex(a Linux distro) and some opensource organizations to push and support opensource ideas. In this conference companies and investors will meet, so maybe we can find some kind of Companies or Government support.
Projects, this year, will be elected by votes. Other projects are pushing quite hard.
So as this is not another OpenSource meeting but THE OpenSource meeting, I want you to push and vote. We made in Sourceforge Awards and we can do it again.
Creating an user takes less than 1 minute: http://www.opensourceworldconference.com/malaga10/?q=en/user/register
Vote "5-star" in this page(after Login): http://www.opensourceworldconference.com/malaga10/?q=node/953
I promise to make my best PR to find in this meeting any ReactOS opportunity.
If there is any, I will find it. :)
_________________________________________________________________
Accede a tu Hotmail en un solo clic ¡Descárgate Internet Explorer 8 y empieza a disfrutar de todas las ventajas!
http://www.ayudartepodria.com/
Hello,
A recent CMAKE commit has made me notice that a NOSWPAT option determines if FreeType hinting should be used or not. Please note that the Apple patent on the technology recently expired, and this option is not needed anymore, as hinting should always be enabled.
-r