You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.3 KiB

  1. dnl -*- Autoconf -*-
  2. dnl Copyright (C) 1993-2003 Free Software Foundation, Inc.
  3. dnl This file is free software, distributed under the terms of the GNU
  4. dnl General Public License. As a special exception to the GNU General
  5. dnl Public License, this file may be distributed as part of a program
  6. dnl that contains a configuration script generated by Autoconf, under
  7. dnl the same distribution terms as the rest of that program.
  8. dnl From Richard B. Kreckel.
  9. AC_PREREQ(2.13)
  10. dnl Is the gmp header file new enough? (should be implemented with an argument)
  11. AC_DEFUN(CL_GMP_H_VERSION,
  12. [AC_CACHE_CHECK([for recent enough gmp.h], cl_cv_new_gmp_h, [
  13. AC_TRY_CPP([#include <gmp.h>
  14. #if !defined(__GNU_MP_VERSION) || (__GNU_MP_VERSION < 3)
  15. #error "ancient gmp.h"
  16. #endif],
  17. cl_cv_new_gmp_h="yes", cl_cv_new_gmp_h="no")
  18. ])])dnl
  19. dnl Does libgmp provide some functionality introduced in version 3.0?
  20. AC_DEFUN(CL_GMP_CHECK,
  21. [AC_CACHE_CHECK([for working libgmp], cl_cv_new_libgmp, [
  22. SAVELIBS=$LIBS
  23. LIBS="$LIBS -lgmp"
  24. AC_TRY_LINK([#include <gmp.h>],[mpn_divexact_by3(0,0,0)],
  25. cl_cv_new_libgmp="yes", cl_cv_new_libgmp="no"; LIBS=$SAVELIBS)
  26. ])])
  27. dnl What is sizeof(mp_limb_t)? (It has to match sizeof(uintD) later.)
  28. AC_DEFUN(CL_GMP_SET_UINTD,
  29. [AC_CACHE_CHECK([how large gmp demands uintD to be], cl_cv_gmp_set_uintd, [
  30. AC_TRY_RUN([#include <stdio.h>
  31. #include <gmp.h>
  32. int main() {
  33. FILE *f=fopen("conftestval", "w");
  34. if (!f) return(255);
  35. if (sizeof(mp_limb_t) > sizeof(long))
  36. fprintf(f, "long long");
  37. else if (sizeof(mp_limb_t) == sizeof(long))
  38. fprintf(f, "long");
  39. else if (sizeof(mp_limb_t) == sizeof(int))
  40. fprintf(f, "int");
  41. else return(sizeof(mp_limb_t));
  42. #if defined(__GMP_BITS_PER_MP_LIMB)
  43. /* Is there a nail in a limb? */
  44. if (8*sizeof(mp_limb_t)!=__GMP_BITS_PER_MP_LIMB)
  45. return(254);
  46. #endif
  47. return(0);
  48. }], cl_cv_gmp_set_uintd=`cat conftestval`
  49. cl_gmp_demands="GMP_DEMANDS_UINTD_`echo ${cl_cv_gmp_set_uintd} | sed -e 'y/ gilnot/_GILNOT/'`",
  50. gmp_retval="$ac_status"
  51. if test x$gmp_retval = "x255"; then AC_MSG_ERROR([error opening output file.]); fi
  52. if test x$gmp_retval = "x254"; then AC_MSG_ERROR([nails in MP limbs are unsupported.]); fi
  53. AC_MSG_ERROR([Don't know which C-type has sizeof $gmp_retval.]),
  54. AC_MSG_ERROR([cross-compiling - cannot determine]))
  55. ])
  56. AC_DEFINE_UNQUOTED($cl_gmp_demands)
  57. ])