Skip to content
Snippets Groups Projects
Commit c650f28b authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-08-10 14:19:23 by simonm]

apparently GMP is installed as libgmp2.a on Debian systems.
parent ce01fcd0
No related branches found
No related tags found
No related merge requests found
......@@ -460,8 +460,11 @@ AC_CHECK_FUNCS(access ftime getclock getpagesize getrusage gettimeofday mktime m
#
dnl ** check whether this machine has GMP 2.0 installed
#
AC_CHECK_LIB(gmp, mpz_fdiv_qr, HaveLibGmp=YES, HaveLibGmp=NO)
AC_CHECK_LIB(gmp, mpz_fdiv_qr, HaveLibGmp=YES; LibGmp=gmp,
AC_CHECK_LIB(gmp2, mpz_fdiv_qr, HaveLibGmp=YES; LibGmp=gmp2,
HaveLibGmp=No; LibGmp=not-installed))
AC_SUBST(HaveLibGmp)
AC_SUBST(LibGmp)
#
dnl ** check whether this machine has BFD and liberty installed (used for debugging)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment