1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* configure.in: Check for -ldl, so the check for Tcl won't fail

spuriously.
This commit is contained in:
Jim Blandy 1996-08-16 00:03:49 +00:00
parent 5ffdd374b1
commit 31104510f4

View file

@ -66,6 +66,11 @@ build_subdirs="${existingdirs}"
### Decide which directories to build; remove the ones we don't want ### Decide which directories to build; remove the ones we don't want
### from build_subdirs. ### from build_subdirs.
### On some systems, the Tcl library contains references to
### functions in the dynamic linker library, -ldl, so we may need
### to include that.
AC_CHECK_LIB(dl, dlopen)
### Use gtcltk-lib only if we seem to have Tcl installed on the ### Use gtcltk-lib only if we seem to have Tcl installed on the
### system. We really should check for Tk as well, but that involves ### system. We really should check for Tk as well, but that involves
### finding all the X libraries that we need to do a complete link. ### finding all the X libraries that we need to do a complete link.