emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-25 b6d2552 2/2: Tweak configure.ac syntax in recent


From: Paul Eggert
Subject: [Emacs-diffs] emacs-25 b6d2552 2/2: Tweak configure.ac syntax in recent module patch
Date: Sun, 17 Apr 2016 02:49:59 +0000

branch: emacs-25
commit b6d2552fe371d8cb4e7216aa9e5f86ecf64d7a78
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Tweak configure.ac syntax in recent module patch
    
    * configure.ac: Use proper Autoconf parenthesization in
    recent HAVE_MODULES patch.  Although this doesn’t fix any bugs,
    the previous syntax was confusing.
---
 configure.ac |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 89bc0c5..7184d68 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3351,9 +3351,10 @@ if test "${with_modules}" != "no"; then
       HAVE_MODULES=yes
       ;;
     *)
-      # BSD system have dlopen in the libc
-      AC_CHECK_FUNC(dlopen, [MODULES_SUFFIX=".so"]
-                            [HAVE_MODULES=yes], [])
+      # BSD systems have dlopen in libc.
+      AC_CHECK_FUNC([dlopen],
+        [MODULES_SUFFIX=".so"
+         HAVE_MODULES=yes])
       ;;
   esac
 



reply via email to

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