Checked out revision 747 and while compiling got an error that strchr and
memcpy could not be found in src/kml/base/string_util.cc. I added the
header string.h and it worked. Don't know for sure, but I thing gcc 4.4 is
more carefully about including other header files then earlier version and
that is what is causing this.
Thanks,
Paul
Index: kml/base/string_util.cc
===================================================================
--- kml/base/string_util.cc (revision 747)
+++ kml/base/string_util.cc (working copy)
@@ -28,6 +28,7 @@
#include "kml/base/string_util.h"
#include <stdlib.h> // strtod()
#include <strings.h> // strncasecmp
+#include <string.h> // memcpy strcpy
namespace kmlbase {
Original issue reported on code.google.com by pdmaseb...@gmail.com on 3 Feb 2010 at 3:23
Original issue reported on code.google.com by
pdmaseb...@gmail.com
on 3 Feb 2010 at 3:23