diff options
| -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 | ||