[Phylobase-commits] r218 - pkg/src/ncl/ncl

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Jul 30 06:48:13 CEST 2008


Author: bcomeara
Date: 2008-07-30 06:48:12 +0200 (Wed, 30 Jul 2008)
New Revision: 218

Modified:
   pkg/src/ncl/ncl/ncl.h
Log:
UINT_MAX was not being defined in a build on R-Forge, though it's in the C standard library. I think I've traced it back to this file, but we'll see what R-Forge has to say

Modified: pkg/src/ncl/ncl/ncl.h
===================================================================
--- pkg/src/ncl/ncl/ncl.h	2008-07-27 20:36:54 UTC (rev 217)
+++ pkg/src/ncl/ncl/ncl.h	2008-07-30 04:48:12 UTC (rev 218)
@@ -43,6 +43,7 @@
 #	include <math.h>
 #	include <stdarg.h>
 #	include <stdio.h>
+#	include <limits.h> //This line was added by BCO to deal with an error when doing a build on R-forge: UINT_MAX was not defined
 #	include <stdlib.h>
 #	include <time.h>
 #	include <float.h>



More information about the Phylobase-commits mailing list