diff options
author | Keith Packard <keithp@keithp.com> | 2014-08-17 20:56:22 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-08-17 20:56:22 -0700 |
commit | 80e20b241359452028298567c76b2f644da5ad23 (patch) | |
tree | 6f129d90884dcbf3d2ff7827be095790caae2368 /configure.ac | |
parent | 830f31fd6dc280e7a63ba689b7a48beff5c49072 (diff) |
Use -ldl when testing whether -m32 and -m64 builds work
We only need -ldl, and not -lbluetooth now that libaltos uses dlopen
on the bluetooth library
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c2b8b55c..38bab8e1 100644 --- a/configure.ac +++ b/configure.ac @@ -459,7 +459,7 @@ xauto) xx86_64|xi*86) save_CFLAGS="$CFLAGS" save_LIBS="$LIBS" - LIBS="-lbluetooth" + LIBS="-ldl" CFLAGS="-m64" AC_MSG_CHECKING([if ]$CC[ ]$CFLAGS[ can link programs]) AC_LINK_IFELSE([AC_LANG_PROGRAM([])], |