1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-08 15:35:02 +00:00

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.
This commit is contained in:
Paul Eggert 2016-04-16 19:49:15 -07:00
parent ae712666bb
commit b6d2552fe3

View File

@ -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