2003-09-27 10:01:11 +00:00
|
|
|
WeeChat - Installation instructions
|
|
|
|
===================================
|
|
|
|
|
2009-03-28 23:08:14 +01:00
|
|
|
You can build WeeChat with cmake (recommended way) or autotools.
|
2003-09-27 10:01:11 +00:00
|
|
|
|
2008-03-15 20:53:41 +01:00
|
|
|
- with cmake:
|
2009-03-28 23:08:14 +01:00
|
|
|
|
2008-03-15 20:53:41 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2009-03-28 23:08:14 +01:00
|
|
|
cmake .. -DPREFIX=/where/you/want/install -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
make
|
|
|
|
make install (as root for installation in system directories)
|
|
|
|
|
|
|
|
- with autotools:
|
|
|
|
|
|
|
|
./autogen.sh (for cloned git repository only, not devel package)
|
|
|
|
./configure --prefix=/where/you/want/install
|
2008-03-15 20:53:41 +01:00
|
|
|
make
|
|
|
|
make install (as root for installation in system directories)
|
2003-10-25 14:49:18 +00:00
|
|
|
|
2003-09-27 10:01:11 +00:00
|
|
|
|
2009-03-28 23:08:14 +01:00
|
|
|
If you want to report bugs/crashs to developers, please:
|
|
|
|
- compile with debug info (built type Debug for cmake, default for autotools),
|
|
|
|
- enable core files (for bash shell, add "ulimit -c unlimited" to your ~/.bashrc).
|
|
|
|
|
|
|
|
|
2006-02-11 10:10:26 +00:00
|
|
|
See AUTHORS for support, feel free to contact us for any problem.
|