mirror of
https://github.com/scandum/tintin
synced 2026-08-13 20:23:04 -04:00
46 lines
1.1 KiB
Text
46 lines
1.1 KiB
Text
INSTALLATION
|
|
------------
|
|
|
|
Installation should be easy; cd to the src/ directory, then type:
|
|
|
|
./configure
|
|
|
|
make install
|
|
|
|
If this went without errors or serious warnings type this to start tintin:
|
|
|
|
tt++
|
|
|
|
You might need to install the following libraries:
|
|
|
|
pcre2: pcre.org
|
|
zlib: zlib.net
|
|
gnutls: gnutls.org
|
|
|
|
If you have any trouble with installing/compiling tintin you should check out
|
|
the install section on the website.
|
|
|
|
https://tintin.mudhalla.net/install.php
|
|
|
|
If that doesn't do the trick you can ask for assistance on the forum.
|
|
|
|
|
|
TERMINAL EMULATION
|
|
------------------
|
|
|
|
In order to run tintin full featured you will need a vt100 emulator. If your
|
|
OS doesn't use one per default it's suggested to install xterm.
|
|
|
|
|
|
STATIC LINKING
|
|
--------------
|
|
|
|
This is more so a note to myself to statically link PCRE2 on Cygwin.
|
|
|
|
wget https://github.com/PCRE2Project/pcre2/releases/download/pcre2-10.44/pcre2-10.44.tar.bz2
|
|
$ tar xvf pcre2-10.44.tar.bz2
|
|
$ cd pcre2-10.44/
|
|
$ ./configure CC=i686-pc-mingw32-gcc CXX=i686-pc-mingw32-g++ --enable-jit --enable-unicode --disable-shared
|
|
$ make
|
|
$ ./configure --libdir='../pcre2-10.44' --includedir='../pcre2-10.44'
|
|
|