INSTALL 1.1 KB

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