From: Orion P. <or...@co...> - 2004-12-16 19:30:01
|
I've been having some issues with octave's signbit() code in lo-ieee.h. I think I've gotten them resolved, but I also needed to patch octave-forge-2004.11.16/main/fixed/int/fixed.cc to include <octave/config.h>. This seems like a good thing in general to include before "internal" octave include files. --- octave-forge-2004.11.16/main/fixed/int/fixed.cc.orig 2004-12-16 12:24:49.946684945 -0700 +++ octave-forge-2004.11.16/main/fixed/int/fixed.cc 2004-12-16 12:23:14.139144545 -0700 @@ -45,6 +45,7 @@ #define lo_ieee_isinf(x) isinf(x) #else +#include <octave/config.h> #include <octave/lo-ieee.h> #endif -- Orion Poplawski System Administrator 303-415-9701 x222 Colorado Research Associates/NWRA FAX: 303-415-9702 3380 Mitchell Lane, Boulder CO 80301 http://www.co-ra.com |