From b6d2552fe371d8cb4e7216aa9e5f86ecf64d7a78 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 16 Apr 2016 19:49:15 -0700 Subject: [PATCH] Tweak configure.ac syntax in recent module patch MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * 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 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 89bc0c5638..7184d68790 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 -- 2.39.2