mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-25 16:47:38 +01:00
Correct the configure check for -ldl.
Submitted by: Arun Sharma <aruns@google.com>
This commit is contained in:
parent
9bb9c972e6
commit
ad97600f75
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ dnl Checks for libraries.
|
||||||
AC_CHECK_LIB(uca, __uc_get_grs)
|
AC_CHECK_LIB(uca, __uc_get_grs)
|
||||||
AC_CHECK_LIB(util, kinfo_getvmmap)
|
AC_CHECK_LIB(util, kinfo_getvmmap)
|
||||||
OLD_LIBS=${LIBS}
|
OLD_LIBS=${LIBS}
|
||||||
AC_SEARCH_LIBS(dl, dlopen)
|
AC_SEARCH_LIBS(dlopen, dl)
|
||||||
LIBS=${OLD_LIBS}
|
LIBS=${OLD_LIBS}
|
||||||
case "$ac_cv_search_dlopen" in
|
case "$ac_cv_search_dlopen" in
|
||||||
-l*) DLLIB=$ac_cv_search_dlopen;;
|
-l*) DLLIB=$ac_cv_search_dlopen;;
|
||||||
|
|
Loading…
Reference in a new issue