Re: [Quickfix-developers] Fedora 9 - gcc 4.3.0-8 issues
Brought to you by:
orenmnero
From: <or...@qu...> - 2008-05-29 14:25:41
|
The patch has been checked into svn. Thanks. --oren > -------- Original Message -------- > Subject: [Quickfix-developers] Fedora 9 - gcc 4.3.0-8 issues > From: Brian B <bri...@du...> > Date: Thu, May 29, 2008 8:52 am > To: qui...@li... > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > Hi, > For those of you with upgrade-itis, the following patch > allows quickfix (latest svn) to compile on Fedora 9. > Basically, add #include <cstring> to Utility.h > The issue is an update to gcc, "Header dependency cleanup". > See http://gcc.gnu.org/gcc-4.3/porting_to.html > Brian > [brian@graceland quickfix]$ diff -u -r > /TRAN/src/svnquickfix/quickfix/src/C++/Utility.h src/C++/Utility.h > --- /TRAN/src/svnquickfix/quickfix/src/C++/Utility.h 2008-04-28 > 08:33:18.000000000 +0100 > +++ src/C++/Utility.h 2008-05-29 10:42:35.000000000 +0100 > @@ -87,6 +87,7 @@ > #endif > > #include <string> > +#include <cstring> > #include <cctype> > #include <ctime> > #include <cstdio> > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |