Backed out changes to aclocal.m4 and fixed gmp.h to work correctly with c99 inline semantics when mpir is being compiled with gcc 4.3.0 or above.

This commit is contained in:
wbhart 2008-06-13 13:11:00 +00:00
parent c2c15d3752
commit f765185c83
2 changed files with 457 additions and 255 deletions

710
aclocal.m4 vendored

File diff suppressed because it is too large Load Diff

View File

@ -420,7 +420,7 @@ typedef __mpq_struct *mpq_ptr;
for an inline too, so as to correctly specify "dllimport" on windows, in
case the function is called rather than inlined. */
#ifdef __GNUC__
#if __USE_ISOC99
#if __USE_ISOC99 || __GMP_GNUC_PREREQ (4,3)
#define __GMP_EXTERN_INLINE static __inline__
#define __GMP_STATIC static
#else