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>
|