0
|
1 /*
|
|
2 Copyright (C) 1995 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: Not really in FSF. */
|
|
22
|
|
23 /* Work around a problem that happens because math.h on hpux 7
|
|
24 defines two static variables--which, in Emacs, are not really static,
|
|
25 because `static' is defined as nothing. The problem is that they are
|
|
26 defined both in data.c and in floatfns.c.
|
|
27 These macros prevent the name conflict.
|
|
28
|
|
29 (Is it still necessary to define static to nothing on hpux7?
|
|
30 Removing that would be the best fix. -jwz)
|
|
31 */
|
|
32 # if defined (HPUX) && !defined (HPUX8)
|
|
33 # define _MAXLDBL THIS_FILENAME ## _maxldbl
|
|
34 # define _NMAXLDBL THIS_FILENAME ## _nmaxldbl
|
|
35 # endif
|
|
36
|
108
|
37 #if defined(MSDOS) || (defined(LINUX) && \
|
|
38 !(defined (__GLIBC__) && (__GLIBC__ >= 2)))
|
0
|
39 /* These are redefined (correctly, but differently) in values.h. */
|
|
40 #undef INTBITS
|
|
41 #undef LONGBITS
|
|
42 #undef SHORTBITS
|
|
43 #endif
|
|
44
|
|
45 #include <math.h>
|
|
46
|
104
|
47 #ifdef HAVE_MATHERR
|
|
48 /* Work around symbol conflict on Linux/glibc */
|
|
49 #ifndef DOMAIN
|
|
50 /* SysV matherr is not defined if _BSD_SOURCE is used, and on Linux X11 */
|
|
51 /* is compiled with _BSD_SOURCE which can also change the size of other */
|
|
52 /* types. The configure test for matherr is broken. */
|
|
53 /* Bah. Good riddance to bad rubbish. */
|
|
54 #undef HAVE_MATHERR
|
|
55 #endif
|
|
56 #endif
|
|
57
|
0
|
58 #ifdef NO_MATHERR
|
|
59 #undef HAVE_MATHERR
|
|
60 #endif
|
|
61
|
|
62 #ifdef HAVE_MATHERR
|
|
63 # ifdef FLOAT_CHECK_ERRNO
|
|
64 # undef FLOAT_CHECK_ERRNO
|
|
65 # endif
|
|
66 # ifdef FLOAT_CHECK_DOMAIN
|
|
67 # undef FLOAT_CHECK_DOMAIN
|
|
68 # endif
|
|
69 #endif
|
|
70
|
|
71 #ifndef NO_FLOAT_CHECK_ERRNO
|
|
72 #define FLOAT_CHECK_ERRNO
|
|
73 #endif
|
|
74
|
|
75 #ifdef FLOAT_CHECK_ERRNO
|
|
76 # include <errno.h>
|
|
77 #endif
|
|
78
|
|
79 #ifndef isnan
|
|
80 # define isnan(x) ((x) != (x))
|
|
81 #endif
|
|
82
|