mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
Add back some ifdefs.
Signed-off-by: Edward Tomasz Napierala <trasz@FreeBSD.org>
This commit is contained in:
parent
5db6caee0d
commit
0c49a84ffb
6 changed files with 39 additions and 9 deletions
|
|
@ -32,7 +32,9 @@
|
|||
#include "special-vars.h"
|
||||
#include "fe-core-commands.h"
|
||||
#include "fe-queries.h"
|
||||
#ifdef HAVE_CAPSICUM
|
||||
#include "fe-capsicum.h"
|
||||
#endif
|
||||
#include "hilight-text.h"
|
||||
#include "command-history.h"
|
||||
#include "completion.h"
|
||||
|
|
|
|||
|
|
@ -30,7 +30,9 @@
|
|||
#include "special-vars.h"
|
||||
#include "settings.h"
|
||||
#include "lib-config/iconfig.h"
|
||||
#ifdef HAVE_CAPSICUM
|
||||
#include "capsicum.h"
|
||||
#endif
|
||||
|
||||
#include "fe-windows.h"
|
||||
#include "window-items.h"
|
||||
|
|
@ -452,7 +454,11 @@ static void autolog_open(SERVER_REC *server, const char *server_tag,
|
|||
log_item_add(log, LOG_ITEM_TARGET, target, server_tag);
|
||||
|
||||
dir = g_path_get_dirname(log->real_fname);
|
||||
#ifdef HAVE_CAPSICUM
|
||||
capsicum_mkdir_with_parents_wrapper(dir, log_dir_create_mode);
|
||||
#else
|
||||
g_mkdir_with_parents(dir, log_dir_create_mode);
|
||||
#endif
|
||||
g_free(dir);
|
||||
|
||||
log->temp = TRUE;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue