(new to linux)
I'm trying to install xine from its source (I've tried rpm, but it just creates a xine that won't work properly), and as I'm trying to ./configure one of the deps it complains:
checking for ESD - version >= 0.2.8... no
*** The esd-config script installed by ESD could not be found
*** If ESD was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the ESD_CONFIG environment variable to the
*** full path to esd-config.
If I try to ./configure xine itself, it outputs this same message (among others for missing deps).
I checked /usr/bin for esd-config (it's there and version 0.2.28), and then I tried setting the environment variable using:
# export ESD_CONFIG=/usr/bin:$ESD_CONFIG
and
# export ESD_CONFIG=/usr/bin/esd-config
(I saw a bit of different syntax somewhere else)
but the ./configure for the dep gives the same error message for both export variations....
