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:
parent
ae712666bb
commit
b6d2552fe3
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue