From: Paul Eggert Date: Sun, 17 Apr 2016 02:49:15 +0000 (-0700) Subject: Tweak configure.ac syntax in recent module patch X-Git-Tag: emacs-25.0.93~17 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b6d2552;p=emacs.git 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. --- diff --git a/configure.ac b/configure.ac index 89bc0c5638f..7184d68790a 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