emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 62e3750 1/2: Ensure HAVE_GMP is reflected in emacs_config_feature


From: Robert Pluim
Subject: master 62e3750 1/2: Ensure HAVE_GMP is reflected in emacs_config_features
Date: Mon, 11 Jan 2021 07:25:11 -0500 (EST)

branch: master
commit 62e3750af306218a6dc08b1a2ca62e9a73aa306f
Author: Robert Pluim <rpluim@gmail.com>
Commit: Robert Pluim <rpluim@gmail.com>

    Ensure HAVE_GMP is reflected in emacs_config_features
    
    * configure.ac: Move HAVE_GMP setting before emacs_config_features
    setting (Bug#45771).
---
 configure.ac | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/configure.ac b/configure.ac
index 66c6606..616fa55 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5657,6 +5657,12 @@ else
   ACL_SUMMARY=no
 fi
 
+if test -z "$GMP_H"; then
+  HAVE_GMP=yes
+else
+  HAVE_GMP=no
+fi
+
 emacs_standard_dirs='Standard dirs'
 AS_ECHO(["
 Configured for '${canonical}'.
@@ -5713,11 +5719,6 @@ done
 AC_DEFINE_UNQUOTED(EMACS_CONFIG_FEATURES, "${emacs_config_features}",
   [Summary of some of the main features enabled by configure.])
 
-if test -z "$GMP_H"; then
-  HAVE_GMP=yes
-else
-  HAVE_GMP=no
-fi
 AS_ECHO(["  Does Emacs use -lXaw3d?                                 
${HAVE_XAW3D}
   Does Emacs use -lXpm?                                   ${HAVE_XPM}
   Does Emacs use -ljpeg?                                  ${HAVE_JPEG}



reply via email to

[Prev in Thread] Current Thread [Next in Thread]