I'm trying to install GNU Guile so that I can later install Guix. My environment is pretty locked down, but they do allow us build tools. I've been trying to get pianobar installed for the past few days, and it works, but I get the output "Cannot Open Audio Device". I have to compile libao-pulse, which requires Guile, but no matter what arguments I pass to the configure script, it always ends on configure: error: GNU libltdl (Libtool) not found, see README.
I've tried setting LD_LIBRARY_PATH, LD_FLAGS, CFLAGS, and several others, but I can't seem to get it to get past this step.
My build environment looks like this:
├── ~/local
├── bin
├── build
├── include
├── lib
└── share
I have environment variables ($PREFIX, $build, and $PATH) set to reflect this setup.
What am I doing wrong?
config.log: https://gist.github.com/ijustlovemath/e197ee17db459ab46c1a
The telling lines from your log are these:
That is the only place in your
config.log
that mentions/usr/lib/libdl.so
. My hunch is that your local copy oflibtool
is misconfigured.