2009-05-15 23:03:35 +02:00
|
|
|
WeeChat Installation instructions
|
|
|
|
=================================
|
2003-09-27 10:01:11 +00:00
|
|
|
|
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
|
|
|
|
2009-03-28 23:08:14 +01:00
|
|
|
|
2009-05-15 23:03:35 +02:00
|
|
|
With cmake
|
|
|
|
----------
|
2009-03-28 23:08:14 +01:00
|
|
|
|
2009-05-15 23:03:35 +02:00
|
|
|
------------------------------------------------------------------
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake .. -DPREFIX=/where/you/want/install -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
make
|
|
|
|
make install (as root for installation in system directories)
|
|
|
|
------------------------------------------------------------------
|
2009-03-28 23:08:14 +01:00
|
|
|
|
2009-05-15 23:03:35 +02:00
|
|
|
|
|
|
|
With autotools
|
|
|
|
--------------
|
|
|
|
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
./autogen.sh (for cloned git repository only, not .tar.XX package)
|
|
|
|
./configure --prefix=/where/you/want/install
|
|
|
|
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
|
|
|
|
2010-03-13 20:02:29 +01:00
|
|
|
If you want to report bugs/crashes to developers, please:
|
2009-05-15 23:03:35 +02:00
|
|
|
|
2009-05-03 15:09:58 +02:00
|
|
|
- compile with debug info (type "Debug" for cmake build, default for autotools),
|
2009-03-28 23:08:14 +01:00
|
|
|
- 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.
|