Age | Commit message (Collapse) | Author |
|
Commit 6300dfec7 removed the option to disable SSL support from the
configure script since it became a requirement, but it also removed the
use of pkg-config for finding the OpenSSL library and its dependencies.
This had the unfortunate consequence of breaking the correct detection
of library flags in many static linking scenarios. In some cases, for
example, OpenSSL might have been built with zlib, which requires `-lz`
to be passed to the linker when doing a static link of the irssi
executable. Thus, pkg-config becomes an invaluable tool in such
situations, since no guessing work is needed as the OpenSSL .pc file
provides all the necessary flags.
So, this commit re-inserts the PKG_CHECK_MODULES macro in the configure
script when looking for OpenSSL. The test using AC_CHECK_LIB remains,
but only as a last resort in case the one using pkg-config fails.
Also, because the macro AM_PATH_GLIB_2_0 contains an unconditional call
to PKG_PROG_PKG_CONFIG, the OpenSSL checks are moved so that they come
after the Glib ones in order to avoid doubly checking for the pkg-config
binary (PKG_CHECK_MODULES skips that check if it has been performed
before, but PKG_PROG_PKG_CONFIG does not).
|
|
|
|
Timeout feature for keys
|
|
|
|
(cherry picked from commit 2a53853f369b47e42e32e183c8109e3d63808899)
|
|
(cherry picked from commit 0ada284a257cfb08da984a78dab24c3ddaf09ec7)
|
|
Properly check the command arguments in tail place.
commit 5a92a3926fab4def4bcb7d14642b93184eeb4f71
Merge: 647ef193a896cc8a97d9bc664a6337b8b779f3c4 e4601b4b43af6177375c90a423546d892fbf6bfd
Rebased: e4601b4b43af6177375c90a423546d892fbf6bfd dc99f8d7a5f90eebd4c52cef8d186bf20e2a9912
|
|
fe-netjoin: remove irc servers on "server disconnected" signal
Closes #7
See merge request !10
|
|
expand_escape: expand double backslash as a backslash
|
|
|
|
fix dcc get
fixes #656
|
|
make foreach send commands
|
|
fixes #656
|
|
Revert "Quote the filename when dcc requests are auto accepted."
|
|
|
|
Quote the filename when dcc requests are auto accepted.
|
|
A command requiring an argument and given in tail position would not
raise an error but silently set the value to the empty string ''.
|
|
Prevent some potential null-pointer deferences.
See merge request !9
|
|
Fix Segfault when unloading a script that registers for 'script destroyed' signals
Closes #660
|
|
The script unloading code originally worked like this:
1. Destroy package
2. Emit 'script destroyed' signal
3. Unhook script's signal handlers
If a script added a 'script destroyed' signal handler, unloading
that script would cause the 'script destroyed' signal to be sent to the
(already destroyed) package. This would cause a script error, which would
trigger a script unload, which would start the whole process over again,
until we run out of heap or stack space and segfault.
This commit simply reorders the operations so that the 'script destroyed'
signal is sent *after* the script is fully destroyed.
|
|
|
|
notify-ison: Don't send ison before the connection is done
|
|
|
|
Let's repurpose escape_string and make it more flexible by letting us
choose the characters to escape.
|
|
PR #453 forces the user to quote the filenames given to /DCC commands
when they contain spaces but the autoget functionality didn't get
updated so the filename was always passed without quotes.
Closes #656.
|
|
Similar to how vim behaves.
|
|
Check whether the client certificate is expired.
|
|
Do not alias /server <hostname> to /server connect <hostname>
|
|
Closes #559.
|
|
Spotted by our friend scan-build.
|
|
|
|
provide net_start_ssl api
|
|
fixes #615
|
|
Support OpenSSL 1.1.0.
|
|
Make themes' docs more consistent.
|
|
|
|
|
|
Mentioning "sb-item" was misleading in that there is no such template,
nor any occurrence of that exact string anywhere else in the source.
In going from `sb-item` to `"sb"` I am following the pattern established
in a couple of comments above:
"msgownnick" specifies the styling …
"ownmsgnick" specifies …
|
|
Prevent a memory leak during the processing of the SASL response.
See merge request !8
|
|
sync mail.pl
|
|
perl_parse needs NULL terminated parameter list.
|
|
fix regression in completion
|
|
Follow g_strsplit with call to g_strfreev
|
|
Fix syntax on /help SERVER example
|
|
Add OPENSSL_NO_EC for solaris 11.3, see issue #598
|
|
make irssi --with-perl build with separate object directory
|
|
- X509_get_notBefore becomes X509_get0_notBefore
- X509_get_notAfter becomes X509_get0_notAfter
- ASN1_STRING_data becomes ASN1_STRING_get0_data (and drops the const)
- The whole library is now initialized by OPENSSL_init_ssl
Closes #597
|
|
Prevent a memory leak during the processing of the SASL response.
See merge request !8
|
|
Minor cleanup in the highlighting signal.
|
|
support storing and replaying the monospace attribute in textbuffer
|