mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +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
|
|
@ -5,17 +5,9 @@ gboolean capsicum_enabled(void);
|
|||
int capsicum_net_connect_ip(IPADDR *ip, int port, IPADDR *my_ip);
|
||||
int capsicum_net_gethostbyname(const char *addr, IPADDR *ip4, IPADDR *ip6);
|
||||
int capsicum_open(const char *path, int flags, int mode);
|
||||
void capsicum_mkdir_with_parents(const char *path, int mode);
|
||||
|
||||
#ifdef HAVE_CAPSICUM
|
||||
int capsicum_open_wrapper(const char *path, int flags, int mode);
|
||||
void capsicum_mkdir_with_parents(const char *path, int mode);
|
||||
void capsicum_mkdir_with_parents_wrapper(const char *path, int mode);
|
||||
#else
|
||||
#define capsicum_open_wrapper(P, F, M) \
|
||||
open(P, F, M)
|
||||
#define capsicum_mkdir_with_parents_wrapper(P, M) \
|
||||
g_mkdir_with_parents(P, M)
|
||||
#endif
|
||||
|
||||
void capsicum_init(void);
|
||||
void capsicum_deinit(void);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue