0

I am trying to install pulse audio but get the following error:

# ./configure
checking whether a program can dlopen itself... yes

checking whether a statically linked program can dlopen itself... yes

checking whether stripping libraries is possible... yes

checking if libtool supports shared libraries... yes

checking whether to build shared libraries... yes

checking whether to build static libraries... no

checking ltdl.h usability... no

checking ltdl.h presence... no

checking for ltdl.h... no

configure: error: Unable to find libltdl version 2. Makes sure you have libtool 2.2 or later installed.

# yum install libtool
Loaded plugins: refresh-packagekit
Setting up Install Process
Package libtool-2.2.6-11.fc11.1.i586 already installed and latest version
Nothing to do

Why is it not found if installed?

Thank you for your kind help.

llogan
  • 121,796
  • 28
  • 232
  • 243
langiac
  • 317
  • 1
  • 3
  • 16
  • Do you have that lib installed at your system? – user0042 Jul 15 '17 at 12:14
  • yes, i was installed, remove and install again but failf – langiac Jul 15 '17 at 12:17
  • yum install libtool / Package libtool-2.4.2-22.el7_3.x86_64 already installed and latest – langiac Jul 15 '17 at 12:18
  • You installed as root and also installed all the dependencies? When you uninstalled, did you uninstall the things that depend on it? You may need other updates. –  Jul 15 '17 at 13:58
  • yes, i install as root. when i install have error but ==> "ps aux | grep pulseaudio hungtv 12592 0.0 0.1 553848 6904 ? S – langiac Jul 15 '17 at 15:38
  • pulseaudio --start N: [pulseaudio] main.c: User-configured server at {f310404109614ac8a899ad1e05b75ced}unix:/run/user/1000/pulse/native, which appears to be local. Probing deeper. [hungtv@localhost bin]$ – langiac Jul 15 '17 at 15:39

1 Answers1

3

./configure is looking for the header ltdl.h so you need to install the libtdl development package:

yum install libtool-ltdl-devel
Mike Kinghan
  • 55,740
  • 12
  • 153
  • 182