svn commit: r401126 - head/devel/libdap/files

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Mon Nov 9 18:43:22 UTC 2015


Author: sunpoet
Date: Mon Nov  9 18:43:20 2015
New Revision: 401126
URL: https://svnweb.freebsd.org/changeset/ports/401126

Log:
  - Fix i386 build on FreeBSD 9.x

Added:
  head/devel/libdap/files/patch-tests-TestInt64.cc   (contents, props changed)
  head/devel/libdap/files/patch-tests-TestUInt64.cc   (contents, props changed)

Added: head/devel/libdap/files/patch-tests-TestInt64.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libdap/files/patch-tests-TestInt64.cc	Mon Nov  9 18:43:20 2015	(r401126)
@@ -0,0 +1,11 @@
+--- tests/TestInt64.cc.orig	2015-09-08 22:42:20 UTC
++++ tests/TestInt64.cc
+@@ -105,7 +105,7 @@ TestInt64::read()
+             d_buf = 64;
+     }
+     else {
+-        d_buf = 0x00ffffffffffffff;
++        d_buf = 0x00ffffffffffffffLL;
+     }
+ 
+     set_read_p(true);

Added: head/devel/libdap/files/patch-tests-TestUInt64.cc
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/libdap/files/patch-tests-TestUInt64.cc	Mon Nov  9 18:43:20 2015	(r401126)
@@ -0,0 +1,11 @@
+--- tests/TestUInt64.cc.orig	2015-09-08 22:42:20 UTC
++++ tests/TestUInt64.cc
+@@ -99,7 +99,7 @@ TestUInt64::read()
+         d_buf = 64 * d_buf;
+     }
+     else {
+-        d_buf = 0xffffffffffffffff;		// really big
++        d_buf = 0xffffffffffffffffLL;		// really big
+     }
+ 
+     set_read_p(true);


More information about the svn-ports-all mailing list