From: Paul Eggert Date: Mon, 13 Aug 2018 00:14:43 +0000 (-0700) Subject: * configure.ac (GMP_LIB): Set to -lgmp if --without-mini-gmp. X-Git-Tag: emacs-27.0.90~4578 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ca10011898e2ceeded4027413a1488837199ad7a;p=emacs.git * configure.ac (GMP_LIB): Set to -lgmp if --without-mini-gmp. --- diff --git a/configure.ac b/configure.ac index c40b3bd2903..0b8849eea23 100644 --- a/configure.ac +++ b/configure.ac @@ -4312,7 +4312,7 @@ GMP_OBJ=mini-gmp-emacs.o HAVE_GMP=no case $with_mini_gmp in yes) ;; - no) HAVE_GMP=yes;; + no) HAVE_GMP=yes GMP_LIB=-lgmp;; *) AC_CHECK_HEADERS([gmp.h], [OLIBS=$LIBS AC_SEARCH_LIBS([__gmpz_roinit_n], [gmp])