* include/gmp.h: Include/gmp-mparam.h. * stdlib/strtod.c: Include gmp-mparam.h before...
authorAlexandre Oliva <aoliva@redhat.com>
Fri, 14 Mar 2003 05:48:18 +0000 (05:48 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Fri, 14 Mar 2003 05:48:18 +0000 (05:48 +0000)
* include/gmp.h: Include/gmp-mparam.h.
* stdlib/strtod.c: Include gmp-mparam.h before gmp.h and
gmp-impl.h.

2003-03-14  Alexandre Oliva  <aoliva@redhat.com>

ChangeLog
include/gmp.h
stdlib/strtod.c

index 9924187..0e2eb34 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2003-03-14  Alexandre Oliva  <aoliva@redhat.com>
 
+       * include/gmp.h: Include/gmp-mparam.h.
+       * stdlib/strtod.c: Include gmp-mparam.h before gmp.h and
+       gmp-impl.h.
+
+2003-03-14  Alexandre Oliva  <aoliva@redhat.com>
+
        * elf/dl-conflict.c: Don't compile _dl_resolve_conflicts if
        ELF_MACHINE_NO_RELA is set.
        * elf/rtld.c (dl_main): No prelink support for REL-only.
index ff26658..b741670 100644 (file)
@@ -1,3 +1,7 @@
+/* Include gmp-mparam.h first, such that definitions of _SHORT_LIMB
+   and _LONG_LONG_LIMB in it can take effect into gmp.h.  */
+#include <gmp-mparam.h>
+
 #ifndef __GMP_H__
 
 #include <stdlib/gmp.h>
index ef74b3d..820307a 100644 (file)
 /* The gmp headers need some configuration frobs.  */
 #define HAVE_ALLOCA 1
 
+/* Include gmp-mparam.h first, such that definitions of _SHORT_LIMB
+   and _LONG_LONG_LIMB in it can take effect into gmp.h.  */
+#include <gmp-mparam.h>
 #include <gmp.h>
 #include <gmp-impl.h>
-#include <gmp-mparam.h>
 #include <longlong.h>
 #include "fpioconst.h"