0

I would like to use XMLSec Library in one of my iOS app. I have followed all the instructions mentioned on http://www.aleksey.com/xmlsec/download.html and downloaded all the required libraries and frameworks. I am trying to install this library on my Mac OS 10.6.8; I have followed all the instructions mentioned on How do you install lxml on OS X Leopard without using MacPorts or Fink? but noting seems to work. I am facing an error while installation which is

configure: error: You need at least libxml2 2.7.4 for this version of xmlsec1

I have tried to update the libxml2 version and followed instructions mentioned on Problems installing libxml2 on Mac OS X and was successfully able to update the libxml2 version but still facing the issue "error: You need at least libxml2 2.7.4 for this version of xmlsec1" while installing the XMLSec library on Mac.

Community
  • 1
  • 1
sandy
  • 2,127
  • 4
  • 28
  • 50

1 Answers1

2

Try:

sudo ./configure --with-libxml=/usr/local --without-libxslt

You need to set --without-libxslt or you have to build the new version of libxslt by yourself.

Perception
  • 79,279
  • 19
  • 185
  • 195
iOS Padawan
  • 418
  • 1
  • 5
  • 16