gmp now needs mzconfig

svn: r3645
This commit is contained in:
Matthew Flatt 2006-07-07 04:01:12 +00:00
parent 421ef32797
commit d211acd993
3 changed files with 7 additions and 12 deletions

View File

@ -19,6 +19,12 @@ along with the GNU MP Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */ MA 02111-1307, USA. */
#ifdef SIZEOF_LONG
# if SIZEOF_LONG == 8
# define SIXTY_FOUR_BIT_INTEGERS
# endif
#endif
#if defined(SIXTY_FOUR_BIT_INTEGERS) || defined(_LONG_LONG_LIMB) #if defined(SIXTY_FOUR_BIT_INTEGERS) || defined(_LONG_LONG_LIMB)
# define BITS_PER_MP_LIMB 64 # define BITS_PER_MP_LIMB 64
# define BYTES_PER_MP_LIMB 8 # define BYTES_PER_MP_LIMB 8

View File

@ -30,6 +30,7 @@ extern void free(void *);
#define FREE(p, s) free(p) #define FREE(p, s) free(p)
#include "../../sconfig.h" #include "../../sconfig.h"
#include "mzconfig.h"
#include "gmp.h" #include "gmp.h"
#include "gmp-impl.h" #include "gmp-impl.h"
#include "gmplonglong.h" #include "gmplonglong.h"

View File

@ -37,18 +37,6 @@
# define SCHEME_NO_GC_PROTO # define SCHEME_NO_GC_PROTO
#endif #endif
#if defined(mips) || defined(__mips)
/* Irix SPROCS needs to load some files first, so find out if we're SPROCS. */
# include "../sconfig.h"
# ifdef MZ_USE_IRIX_SPROCS
/* Don't include anything else before this */
# include "../gc/gc.h"
# include "../gc/semaphores.h"
# include "../gc/sproc.h"
# endif
#endif
#include "schpriv.h" #include "schpriv.h"
#include "schmach.h" #include "schmach.h"
#include "schgc.h" #include "schgc.h"