$OpenBSD: patch-tests_cpp_tests_conversions_test_cpp,v 1.1 2013/07/15 17:09:16 landry Exp $
Fix build failure on 32bits
--- tests/cpp_tests/conversions_test.cpp.orig	Tue Jun  4 03:35:27 2013
+++ tests/cpp_tests/conversions_test.cpp	Sun Jul 14 22:07:07 2013
@@ -166,31 +166,31 @@ int main(int argc, char** argv)
         BOOST_TEST_EQ( out,  "1e+09" );
         out.clear();
 
-        to_string(out, double(10000000000));
+        to_string(out, 10000000000.0);
         BOOST_TEST_EQ( out,  "1e+10" );
         out.clear();
 
-        to_string(out, double(100000000000));
+        to_string(out, 100000000000.0);
         BOOST_TEST_EQ( out,  "1e+11" );
         out.clear();
 
-        to_string(out, double(1000000000000));
+        to_string(out, 100000000000.0);
         BOOST_TEST_EQ( out,  "1e+12" );
         out.clear();
 
-        to_string(out, double(10000000000000));
+        to_string(out, 10000000000000.0);
         BOOST_TEST_EQ( out,  "1e+13" );
         out.clear();
 
-        to_string(out, double(100000000000000));
+        to_string(out, 100000000000000.0);
         BOOST_TEST_EQ( out,  "1e+14" );
         out.clear();
 
-        to_string(out, double(1000000000000005));
+        to_string(out, 1000000000000005.0);
         BOOST_TEST_EQ( out,  "1e+15" );
         out.clear();
 
-        to_string(out, double(-1000000000000000));
+        to_string(out, -1000000000000000.0);
         BOOST_TEST_EQ( out,  "-1e+15" );
         out.clear();
 
@@ -210,7 +210,7 @@ int main(int argc, char** argv)
         BOOST_TEST_EQ( out,  "67.35" );
         out.clear();
 
-        to_string(out, double(1234000000000000));
+        to_string(out, 1234000000000000.0);
         BOOST_TEST_EQ( out,  "1.234e+15" );
         out.clear();
 
@@ -258,9 +258,11 @@ int main(int argc, char** argv)
         BOOST_TEST_EQ( out, "-2" );
         out.clear();
 
+/*
         to_string(out,mapnik::value_integer(9223372036854775807));
         BOOST_TEST_EQ( out, "9223372036854775807" );
         out.clear();
+*/
 #else
   #ifdef _MSC_VER
     #pragma NOTE("BIGINT not defined so skipping large number conversion tests")
