142a7dae3b
- The function whos() didn't work in the previous release, for which reason there is this early bug fix release now. - Since introduction of KShallowObjectArray in 1.32, I forgot to increase the constant 12 to 13 in #define pair(ka,kb) ... in objarithm.C. Result: E.g., 2/x where x is undefined did not produce error message but silently evaluated to 0. There could be other much more obscure errors also. Now the constant 12 is no longer hard-coded but is defined to be int(Kundef)+1. This works as long as Kundef remains the last in enum Tkind (object.H). There is comment telling it... - in tela.C:FindMachineNan(), using switch() statement can cause compile-time error due to duplicate case labels, fixed now by rewriting switch() as nested if's (tela.C) (This is in code segment that was put in tela only in the previous release.) - some changes to allow compilation with gcc-3.0 (contributed by Ch. Spiel)
15 lines
324 B
Text
15 lines
324 B
Text
$NetBSD: patch-ai,v 1.5 2002/05/03 23:32:13 jtb Exp $
|
|
|
|
--- files.ct.orig Wed May 1 15:38:51 2002
|
|
+++ files.ct Wed May 1 15:39:13 2002
|
|
@@ -24,8 +24,8 @@
|
|
# include "dfr8.h"
|
|
#else
|
|
extern "C" {
|
|
-# include "df.h"
|
|
-# include "mfhdf.h"
|
|
+# include "hdf/df.h"
|
|
+# include "hdf/mfhdf.h"
|
|
}
|
|
#endif
|
|
#ifndef __GNUC__
|