You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2002/04/08 20:36:02 UTC

DO NOT REPLY [Bug 7447] - dynamic library on aix 4.3.3 and xalan-c

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7447>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=7447

dynamic library on aix 4.3.3 and xalan-c





------- Additional Comments From egersdorf@kadel.cz  2002-04-08 18:36 -------
I think it's same problem, which I had on Windows. Try to recompile Xalan's 
library (on Win it's called PlatformSupport.dll) with change in file 
PlatformSupport/DoubleSupport.cpp line 89.
Original:
const double	DoubleSupport::s_NaN = sqrt(-2.01);

Changed:
#include <limits>
const double	DoubleSupport::s_NaN = _Inf._D;