]> code.delx.au - gnu-emacs/commitdiff
Tweak configure.ac syntax in recent module patch
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 17 Apr 2016 02:49:15 +0000 (19:49 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 17 Apr 2016 02:49:31 +0000 (19:49 -0700)
* 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

index 89bc0c5638fd1fe93bc61ba48d1880c64bb224fb..7184d68790a61f05737a2e990e2c1c1847cef76d 100644 (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