10

When compiling Icecast 2, I get this error when I run autogen.sh:

$ autogen.sh
... stuff ommitted
configure: error: XSLT configuration could not be found

What is the reason for it, and how do I fix it?

Evan Carroll
  • 30,763
  • 48
  • 183
  • 315

1 Answers1

24

You're missing some XML libraries. Try installing libxml2-dev. On Ubuntu or Debian, use

sudo apt-get install libxslt-dev

On Fedora or such it would be

yum install libxslt-devel
Evan Carroll
  • 30,763
  • 48
  • 183
  • 315