Revert "Add no hash api"
[external/xmlsec1.git] / INSTALL
1 Compilation
2
3 1. How to compile XMLSec?
4 As most UNIX libraries XMLSec follows the "standard":
5
6      gunzip -c xmlsec-xxx.tar.gz | tar xvf -
7      cd xmlsec-xxxx
8      ./configure --help
9
10 to see the options, then the compilation/installation proper
11
12      ./configure [possible options]
13      make
14      make install
15
16 Probably you may have to rerun ldconfig or similar utility to
17 update your list of installed shared libs. At this point you can check 
18 that the library is compiled successfully by running
19
20      make check
21
22 2.What other libraries are needed to compile/install XMLSec? 
23 XMLSec requires following libraries:
24
25     LibXML2 (http://xmlsoft.org): a very powerfull XML parsing and
26         manipulating library
27     LibXSLT (http://xmlsoft.org/XSLT/): a nice XSLT processor based
28         on LibXML2
29     OpenSSL (http://www.openssl.org): well known cryptographic library
30
31 If you are running a Linux system then there is a good chance that
32 you already have all libraries installed. Also XMLSec requires the 
33 normal C ANSI API (please report any violation to this rule you may find).
34
35
36 Aleksey Sanin <aleksey@aleksey.com>
37
38 $Id$