mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 12:53:42 +02:00
Fix build without Capsicum.
Signed-off-by: Edward Tomasz Napierala <trasz@FreeBSD.org>
This commit is contained in:
parent
12e2c46d6a
commit
8c04c2be14
2 changed files with 8 additions and 0 deletions
|
|
@ -236,7 +236,9 @@ void core_init(void)
|
|||
commands_init();
|
||||
nickmatch_cache_init();
|
||||
session_init();
|
||||
#ifdef HAVE_CAPSICUM
|
||||
capsicum_init();
|
||||
#endif
|
||||
|
||||
chat_protocols_init();
|
||||
chatnets_init();
|
||||
|
|
@ -294,7 +296,9 @@ void core_deinit(void)
|
|||
chatnets_deinit();
|
||||
chat_protocols_deinit();
|
||||
|
||||
#ifdef HAVE_CAPSICUM
|
||||
capsicum_deinit();
|
||||
#endif
|
||||
session_deinit();
|
||||
nickmatch_cache_deinit();
|
||||
commands_deinit();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue