You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sh...@apache.org on 2012/10/04 05:44:35 UTC

svn commit: r1393904 - in /xalan/c/trunk: src/xalanc/PlatformSupport/DoubleSupport.hpp xdocs/make-apiDocs.sh xdocs/sources/make-book.sh

Author: shathaway
Date: Thu Oct  4 03:44:34 2012
New Revision: 1393904

URL: http://svn.apache.org/viewvc?rev=1393904&view=rev
Log:
Multiple Updates, #1 xdoc scripts, #2 fix compile error for OpenBSD

Modified:
    xalan/c/trunk/src/xalanc/PlatformSupport/DoubleSupport.hpp
    xalan/c/trunk/xdocs/make-apiDocs.sh
    xalan/c/trunk/xdocs/sources/make-book.sh

Modified: xalan/c/trunk/src/xalanc/PlatformSupport/DoubleSupport.hpp
URL: http://svn.apache.org/viewvc/xalan/c/trunk/src/xalanc/PlatformSupport/DoubleSupport.hpp?rev=1393904&r1=1393903&r2=1393904&view=diff
==============================================================================
--- xalan/c/trunk/src/xalanc/PlatformSupport/DoubleSupport.hpp (original)
+++ xalan/c/trunk/src/xalanc/PlatformSupport/DoubleSupport.hpp Thu Oct  4 03:44:34 2012
@@ -28,7 +28,7 @@
 #if defined(_MSC_VER)
 #include <float.h>
 #endif
-#include <math.h>
+#include <cmath>
 #include <functional>
 
 
@@ -80,7 +80,11 @@ public:
 #if defined(_MSC_VER)
         return _isnan(theNumber) != 0;
 #elif defined(XALAN_POSIX2_AVAILABLE) && !defined(CYGWIN) && !defined(MINGW)
-        return isnan(theNumber) != 0;
+#if defined(XALAN_NO_STD_NAMESPACE)
+        return isnam(theNumber) != 0;
+#else
+        return std::isnan(theNumber) != 0;
+#endif
 #else
         return s_NaN == theNumber;
 #endif

Modified: xalan/c/trunk/xdocs/make-apiDocs.sh
URL: http://svn.apache.org/viewvc/xalan/c/trunk/xdocs/make-apiDocs.sh?rev=1393904&r1=1393903&r2=1393904&view=diff
==============================================================================
--- xalan/c/trunk/xdocs/make-apiDocs.sh (original)
+++ xalan/c/trunk/xdocs/make-apiDocs.sh Thu Oct  4 03:44:34 2012
@@ -9,7 +9,7 @@
 # Various OS's have different ways of specifying the library path
 #
 # Solaris and Linux
-  LD_LIBRARY_PATH=/usr/local/lib
+# LD_LIBRARY_PATH=/usr/local/lib
 #
 # HP-UX
 # SHLIB_PATH=/usr/local/lib

Modified: xalan/c/trunk/xdocs/sources/make-book.sh
URL: http://svn.apache.org/viewvc/xalan/c/trunk/xdocs/sources/make-book.sh?rev=1393904&r1=1393903&r2=1393904&view=diff
==============================================================================
--- xalan/c/trunk/xdocs/sources/make-book.sh (original)
+++ xalan/c/trunk/xdocs/sources/make-book.sh Thu Oct  4 03:44:34 2012
@@ -5,7 +5,7 @@
 # SET THE LIBRARY PATH FOR YOUR OPERATING SYSTEM, REQUIRED BY "Xalan" PROGRAM
 #
 #  SOLARIS AND LINUX
- export LD_LIBRARY_PATH=/usr/local/lib
+# export LD_LIBRARY_PATH=/usr/local/lib
 #
 #  AIX AND BSD
 # export LIBPATH=/usr/local/lib



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xalan.apache.org
For additional commands, e-mail: commits-help@xalan.apache.org