diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2013-05-17 16:24:21 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2013-05-17 16:24:21 +0000 |
commit | a48b32c06849c3e91e92cb5261e135a55cd584c4 (patch) | |
tree | b77cf1866cca3f37c2f5fd4c49d541d7b26a9f90 /gdb/configure.ac | |
parent | 4934fdafeae14d61c01107ecaee2f7fac6ff12cb (diff) | |
download | gdb-a48b32c06849c3e91e92cb5261e135a55cd584c4.zip gdb-a48b32c06849c3e91e92cb5261e135a55cd584c4.tar.gz gdb-a48b32c06849c3e91e92cb5261e135a55cd584c4.tar.bz2 |
Replace hardcoded -ldl with check for availability
2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
* acinclude.m4: Add check for dlopen in libdl.
* configure.ac: Ditto.
* configure: Regenerate.
Diffstat (limited to 'gdb/configure.ac')
-rw-r--r-- | gdb/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/configure.ac b/gdb/configure.ac index c3f79ec..5fcec52 100644 --- a/gdb/configure.ac +++ b/gdb/configure.ac @@ -2036,7 +2036,7 @@ if test $gdb_cv_var_elf = yes; then [Define if ELF support should be included.]) # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>. if test "$plugins" = "yes"; then - LIBS="-ldl $LIBS" + AC_SEARCH_LIBS(dlopen, dl) fi fi |