1INSTALLATION
2------------
3
4Installation should be easy; cd to the src/ directory, then type:
5
6./configure
7
8make install
9
10If this went without errors or serious warnings type this to start tintin:
11
12tt++
13
14You might need to install the following libraries:
15
16  pcre: pcre.org
17  zlib: zlib.net
18gnutls: gnutls.org
19
20If you have any trouble with installing/compiling tintin you should check out
21the install section on the website.
22
23https://tintin.mudhalla.net/install.php
24
25If that doesn't do the trick you can ask for assistance on the forum.
26
27
28TERMINAL EMULATION
29------------------
30
31In order to run tintin full featured you will need a vt100 emulator. If your
32OS doesn't use one per default it's suggested to install xterm.
33
34
35STATIC LINKING
36--------------
37
38This is more so a note to myself to statically link PCRE on Cygwin.
39
40$ wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.34.tar.bz2
41$ tar xvf pcre-8.34.tar.bz2
42$ cd pcre-8.34/
43$ ./configure CC=i686-pc-mingw32-gcc CXX=i686-pc-mingw32-g++ --enable-jit --enable-unicode-properties --disable-shared
44$ make
45$ ./configure --libdir='../pcre-8.34' --includedir='../pcre-8.34'
46