? Makefile ? Makefile.in ? aclocal.m4 ? autom4te.cache ? bootstrap ? config.guess ? config.log ? config.status ? config.sub ? configure ? depcomp ? install-sh ? libtool ? ltmain.sh ? missing ? doc/Makefile ? doc/Makefile.in ? src/.deps ? src/.libs ? src/Makefile ? src/Makefile.in ? src/a.out ? src/bmpx-dbus-system-co.core ? src/bmpx.h ? src/config.h ? src/config.h.in ? src/conky ? src/conky.core ? src/stamp-h1 ? tests/hash.c ? tests/hash.h ? tests/libtcp-portmon.c ? tests/libtcp-portmon.h ? tests/test-hash Index: configure.in =================================================================== RCS file: /cvsroot/conky/conky/configure.in,v retrieving revision 1.43 diff -u -r1.43 configure.in --- configure.in 11 Jan 2006 17:03:44 -0000 1.43 +++ configure.in 11 Jan 2006 20:31:47 -0000 @@ -113,9 +113,14 @@ if test "x$DLFCN_MISSING" = xyes; then AC_MSG_ERROR(["dlfcn.h missing: dynamic library loading not supported"]) fi - AC_CHECK_LIB(dl, dlopen, - LIBS="$LIBS -ldl", - AC_MSG_ERROR([Could not find dlopen in libdl])) +# AC_CHECK_LIB(dl, dlopen, +# LIBS="$LIBS -ldl", +# AC_MSG_ERROR([Could not find dlopen in libdl])) + AC_CHECK_FUNCS(dlopen, [], [ + AC_CHECK_LIB(dl, dlopen, + LIBS="$LIBS -ldl", + AC_MSG_ERROR([Could not find dlopen in libdl])) + ]) fi AM_CONDITIONAL(BUILD_BMP, test x$want_bmp = xyes)