diff options
| author | Paul Eggert | 2016-04-16 19:49:15 -0700 |
|---|---|---|
| committer | Paul Eggert | 2016-04-16 19:49:31 -0700 |
| commit | b6d2552fe371d8cb4e7216aa9e5f86ecf64d7a78 (patch) | |
| tree | 1506e3b0e7822ebcd32ab5eb007a3c5ae7e86aba | |
| parent | ae712666bb25285ee321476fc043321ca42eb5a2 (diff) | |
| download | emacs-b6d2552fe371d8cb4e7216aa9e5f86ecf64d7a78.tar.gz emacs-b6d2552fe371d8cb4e7216aa9e5f86ecf64d7a78.zip | |
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.
| -rw-r--r-- | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
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 | |||
| 3351 | HAVE_MODULES=yes | 3351 | HAVE_MODULES=yes |
| 3352 | ;; | 3352 | ;; |
| 3353 | *) | 3353 | *) |
| 3354 | # BSD system have dlopen in the libc | 3354 | # BSD systems have dlopen in libc. |
| 3355 | AC_CHECK_FUNC(dlopen, [MODULES_SUFFIX=".so"] | 3355 | AC_CHECK_FUNC([dlopen], |
| 3356 | [HAVE_MODULES=yes], []) | 3356 | [MODULES_SUFFIX=".so" |
| 3357 | HAVE_MODULES=yes]) | ||
| 3357 | ;; | 3358 | ;; |
| 3358 | esac | 3359 | esac |
| 3359 | 3360 | ||