diff options
author | Qi Wang <interwq@gwu.edu> | 2018-06-07 12:28:40 -0700 |
---|---|---|
committer | Qi Wang <interwq@gmail.com> | 2019-02-06 21:00:59 -0800 |
commit | 2db2d2ef5e1cf2eb2c0de362c916d0f7a2f1a9ef (patch) | |
tree | 278dfaa9a0dd6a636cbcf2b6b75d3ece10547c87 /configure.ac | |
parent | 1f55a15467357bb559701687dbef1be84047ddfe (diff) |
Make background_thread not dependent on libdl.
When not using libdl, still allows background_thread to be enabled.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index fd468dff..a668e670 100644 --- a/configure.ac +++ b/configure.ac @@ -2130,8 +2130,7 @@ fi dnl ============================================================================ dnl Enable background threads if possible. -if test "x${have_pthread}" = "x1" -a "x${have_dlsym}" = "x1" \ - -a "x${je_cv_os_unfair_lock}" != "xyes" ; then +if test "x${have_pthread}" = "x1" -a "x${je_cv_os_unfair_lock}" != "xyes" ; then AC_DEFINE([JEMALLOC_BACKGROUND_THREAD]) fi |