0

I am getting following error while installing freeswitch on Ubuntu.

libtool: link: cannot find the library /usr/src/freeswitch/libs/apr-util/xml/expat/lib/libexpat.la' or unhandled argument/usr/src/freeswitch/libs/apr-util/xml/expat/lib/libexpat.la'

I read from a forum that this problem can be solved if I install lafilefixer and run "lafilefixer --justfixit". But I don't find a any way to install lafilefixer. Can somebody help me to solve this issue?

Saghar
  • 103
  • 2

1 Answers1

0

Expat is an XML parser library written in C. project website

You need to download the package from project page

Read installation instructions from the README file. Basically you need to

./configure
make
make install 

Have a look at the "Makefile" to learn about additional "make" options. Note that you need to have write permission into the directories into which things will be installed.

Saeed
  • 116
  • 3