• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

doc/H03-May-2022-1,5401,223

include/H03-May-2022-501370

python/H03-May-2022-1,7461,359

src/H03-May-2022-4,0483,424

test/H03-May-2022-1,168952

tools/H03-May-2022-1,2521,039

AUTHORSH A D18-Oct-2011320 1812

COPYINGH A D18-Oct-201125.9 KiB516435

ChangeLogH A D18-Oct-201123.8 KiB721545

HACKINGH A D18-Oct-20111.5 KiB4536

INSTALLH A D18-Oct-201111.1 KiB292219

Makefile.amH A D03-May-2022494 2313

NEWSH A D18-Oct-20112.7 KiB6457

READMEH A D18-Oct-20111 KiB5229

TODOH A D18-Oct-2011736 3015

autogen.shH A D18-Oct-20111.5 KiB6852

configure.acH A D18-Oct-20113.9 KiB146130

iksemel.pc.inH A D18-Oct-2011211 119

README

1
2                      iksemel 1.5
3
4            http://code.google.com/p/iksemel
5
6Copyright (c) 2000-2011 Gurer Ozen <meduketto at gmail.com>
7
8
9Introduction:
10-------------
11
12This is an XML parser library mainly designed for Jabber applications.
13It provides SAX, DOM, and special Jabber stream APIs. Library is coded
14in ANSI C except the network code (which is POSIX compatible), thus
15highly portable. Iksemel is released under GNU Lesser General Public
16License. A copy of the license is included in the COPYING file.
17
18
19Requirements:
20-------------
21
22Libtool, Automake and Autoconf packages are required for compiling cvs
23versions.
24
25TLS support requires OpenSSL (>0.9.8) or GNUTLS (>2.0.0) library.
26
27Python bindings requires Python (>2.2).
28
29
30Compiling & Install:
31--------------------
32
33If you got the source from CVS, type
34
35  ./autogen.sh
36
37for creating configuration script and files.
38
39Then type
40
41  ./configure
42  make
43
44now library is compiled. You can test it with
45
46  make check
47
48and install it with
49
50  (become root if necessary)
51  make install
52