summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorAnas Nashif <anas.nashif@intel.com>2012-11-13 12:30:55 -0800
committerAnas Nashif <anas.nashif@intel.com>2012-11-13 12:30:55 -0800
commitf251dedaa31b48f7c05a4b53c112b40ebca890ef (patch)
treed6c78a1b273417506edb030c96772c8459f5831e /INSTALL
downloadxmlsec1-f251dedaa31b48f7c05a4b53c112b40ebca890ef.tar.gz
xmlsec1-f251dedaa31b48f7c05a4b53c112b40ebca890ef.tar.bz2
xmlsec1-f251dedaa31b48f7c05a4b53c112b40ebca890ef.zip
Imported Upstream version 1.2.18upstream/1.2.18
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL38
1 files changed, 38 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 00000000..baa984f4
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,38 @@
+Compilation
+
+1. How to compile XMLSec?
+As most UNIX libraries XMLSec follows the "standard":
+
+ gunzip -c xmlsec-xxx.tar.gz | tar xvf -
+ cd xmlsec-xxxx
+ ./configure --help
+
+to see the options, then the compilation/installation proper
+
+ ./configure [possible options]
+ make
+ make install
+
+Probably you may have to rerun ldconfig or similar utility to
+update your list of installed shared libs. At this point you can check
+that the library is compiled successfully by running
+
+ make check
+
+2.What other libraries are needed to compile/install XMLSec?
+XMLSec requires following libraries:
+
+ LibXML2 (http://xmlsoft.org): a very powerfull XML parsing and
+ manipulating library
+ LibXSLT (http://xmlsoft.org/XSLT/): a nice XSLT processor based
+ on LibXML2
+ OpenSSL (http://www.openssl.org): well known cryptographic library
+
+If you are running a Linux system then there is a good chance that
+you already have all libraries installed. Also XMLSec requires the
+normal C ANSI API (please report any violation to this rule you may find).
+
+
+Aleksey Sanin <aleksey@aleksey.com>
+
+$Id$