summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2020-06-13javascript: disable build by default and remove Debian packaging of ↵Sébastien Helleu
JavaScript plugin (issue #360)
2020-04-18doc: fix asciidoctor options in autotools buildSébastien Helleu
2020-04-18core: make GnuTLS a required dependencySébastien Helleu
2020-03-22core: fix C++ compiler flags with autotoolsSébastien Helleu
2020-03-22php: add detection of PHP 7.4 in autotoolsSébastien Helleu
Support of PHP 7.4 was added for CMake (in commit 72b107a970a7bed13da040be4515761ddbb1cbb4) but was still missing in autotools.
2020-03-03core: add detection of Ruby 2.7 in autotoolsSébastien Helleu
2020-01-30Fix the build with guile-3.0.0.orbea
v2: Update configure.ac too. Signed-off-by: orbea <orbea@riseup.net>
2020-01-04core: update copyright datesSébastien Helleu
2019-11-18core: add different icons sizes (16x16 to 512x512) (closes #1347)Sébastien Helleu
2019-11-12build: support python 3.8Eli Schwartz
In python 3.8, in order to link to -lpython3.8, you need to use the exported pkg-config interface 'python3-embed' (or 'python3-config --libs --embed'), see https://bugs.python.org/issue36721 for details.
2019-11-10core: link with libnetwork and not libpthread on Haiku (autotools) (issue #1420)Sébastien Helleu
2019-09-21core: remove detection of Ruby 1.8, since Ruby >= 1.9.1 is now required ↵Sébastien Helleu
(issue #1404)
2019-09-21guile: add support of Guile 2.2 (issue #1098)Sébastien Helleu
2019-07-31core: remove obsolete checks of old Python version in configure, properly ↵Sébastien Helleu
set Python version (issue #1382)
2019-07-31core: fix help on python to build with Python 2 (issue #1382)Sébastien Helleu
2019-07-31build: use pkg-config to properly link pythonEli Schwartz
fixes incorrect (non)detection of libpython3.Ym.so due to PEP 3149 since python's officially exported build flags know how to correctly link to python.
2019-07-01core: compile with Python 3 by defaultSébastien Helleu
The CMake option ENABLE_PYTHON3 is renamed to ENABLE_PYTHON2, to use Python 2 first then fallback on Python 3. In the same way, the configure option --enable-python3 is renamed to --enable-python2, to use Python 2 first then fallback on Python 3.
2019-05-11core: add detection of Ruby 2.6 in autotoolsSébastien Helleu
2019-03-23lua: add detection of Lua 5.3 with autotoolsSébastien Helleu
2019-02-19spell: rename "aspell" plugin to "spell" (issue #1299)Sébastien Helleu
The following things have been renamed: - file aspell.conf -> spell.conf - options aspell.* -> spell.* - bar item aspell_dict -> spell_dict - bar item and local variable aspell_suggest -> spell_suggest - info aspell_dict -> spell_dict
2019-01-01core: update copyright datesSébastien Helleu
2018-11-29core: use https for all links where secured http is supportedSébastien Helleu
2018-11-29core: use https for links to GNU GPL licenseSébastien Helleu
2018-11-14core: fix forced highlight on messages sent to other buffers (closes #1277)Sébastien Helleu
The C compiler flag "-fsigned--char" is used to force "char" data type to be always signed (which is what WeeChat expects). On ARM systems, char is unsigned by default, which is causing problems when WeeChat stores -1 in the notify_level (type: char).
2018-10-16php: add detection of PHP 7.3Sébastien Helleu
2018-07-12python: add detection of Python 3.7Sébastien Helleu
2018-06-15Update configure.ac for v8 pluginChris Hills
Explicitly link with -lpthread to fix detection and compilation on some Linux distributions.
2018-03-11core: add binary weechat-headless to run WeeChat without interface (closes ↵Sébastien Helleu
#1120) The optional command line option "--daemon" runs WeeChat like a daemon (fork, new process group, file descriptors closed).
2018-01-05core: update copyright datesSébastien Helleu
2017-12-26core: add detection of Ruby 2.5 in autotools (issue #1122)Sébastien Helleu
2017-10-14build: fix PHP library used to compile PHP plugin (closes #1078)Sébastien Helleu
This was causing a dependency missing in debian packaging.
2017-10-07javascript: fix detection of libv8 with autotools on Ubuntu TrustySébastien Helleu
2017-09-23core: fix typo: Javascript -> JavaScriptSébastien Helleu
2017-09-05php: ensure configure script finds PHP 7Adam Saponara
2017-09-03php: new php pluginAdam Saponara
This plugin requires PHP >= 7.0.
2017-06-25fset: add fset (Fast Set) plugin skeleton (WIP)Sébastien Helleu
2017-05-18core: fix default value displayed in help of configure optionsSébastien Helleu
2017-03-26core: fix typo librairies -> librariesSébastien Helleu
2017-03-25buflist: new plugin "buflist" (bar with list of buffers)Sébastien Helleu
2017-01-01core: update copyright datesSébastien Helleu
2016-12-22core: fix misnamed configure cache variablesrofl0r
these 3 configure tests were bogus in that they didnt return a result: ``` checking for flock() support... checking for execinfo.h and backtrace... checking for eat_newline_glitch support... ``` looking at config.log reveals: ``` configure:24327: checking for eat_newline_glitch support configure:24344: gcc -c -g -O2 -DHAVE_GNUTLS -D_FILE_OFFSET_BITS=64 ... conftest.c: In function 'main': conftest.c:134:2: error: assignment of read-only location '*(cur_term->flags ... configure:24344: $? = 1 configure: failed program was: ... configure:24351: result: ``` but due to the misnamed variables configure ended up enabling eat_newline_glitch. fixes #814
2016-12-17core: link with resolv library only on Mac OS XSébastien Helleu
This fixes build on FreeBSD.
2016-08-19Revert "api: fix connection to servers with hook_connect() on Windows 10 ↵Sébastien Helleu
with Windows subsystem for Linux (closes #770)" This reverts commit 399636f98453bdc1fca19b4dbc742993549aa6c3.
2016-08-06api: fix connection to servers with hook_connect() on Windows 10 with ↵Sébastien Helleu
Windows subsystem for Linux (closes #770)
2016-06-21core: improve help on python3 option (cmake and autotools)Sébastien Helleu
2016-06-21python: add detection of Python 3.5Sébastien Helleu
2016-05-14core: require asciidoctor 1.5.4 instead of 1.5.0 (issue #722)Sébastien Helleu
2016-05-14doc: use asciidoctor instead of asciidoc (issue #722)Sébastien Helleu
2016-05-01core: add detection of Tcl 8.6 in autotoolsSébastien Helleu
2016-04-16core: add Portuguese language in configure scriptSébastien Helleu