1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
INSTALLATION
============
1) If you are using UNIX, you need to compile FISG. See COMPILATION below.
2) Copy FISG binary executable into some place where you want to run it.
3) See users.cfg and example.cfg for examples on configurations.
4) Run FISG, for example:
$ fisg -c somechannel.cfg logfile* -o somechannel.html
Use option --help for help on available options.
COMPILATION
===========
You will need at least the following:
- C-compiler that can compile ANSI-C standard compliant code.
- GNU Make (gmake)
If your installations native CC does not compile FISG, you may
try to patch it or use GCC (GNU Compiler Collection) instead.
GCC is recommended.
1) Untar the package, go to src/
2) Edit Makefile (if necessary), for example if you are not using GCC.
3) 'gmake' (if you don't have GNU Make, get it or fix Makefile)
If it does not compile, try to fix it yourself. I'm not too much
interested on problems.
|