mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Remove all WIN32 ifdefs (unifdef -UWIN32)
Just use cygwin. This looks like it wasn't enough to do anything useful, and I don't think anyone cares about supporting win32 the hard way.
This commit is contained in:
parent
544d5a8bba
commit
96766b7f05
10 changed files with 0 additions and 68 deletions
|
|
@ -83,7 +83,6 @@ static void sig_reload_config(int signo)
|
|||
|
||||
static void read_settings(void)
|
||||
{
|
||||
#ifndef WIN32
|
||||
static int signals[] = {
|
||||
SIGINT, SIGQUIT, SIGTERM,
|
||||
SIGALRM, SIGUSR1, SIGUSR2
|
||||
|
|
@ -124,7 +123,6 @@ static void read_settings(void)
|
|||
settings_set_bool("override_coredump_limit", FALSE);
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
static void sig_gui_dialog(const char *type, const char *text)
|
||||
|
|
@ -225,9 +223,7 @@ void core_init(void)
|
|||
client_start_time = time(NULL);
|
||||
|
||||
modules_init();
|
||||
#ifndef WIN32
|
||||
pidwait_init();
|
||||
#endif
|
||||
|
||||
net_disconnect_init();
|
||||
signals_init();
|
||||
|
|
@ -303,9 +299,7 @@ void core_deinit(void)
|
|||
signals_deinit();
|
||||
net_disconnect_deinit();
|
||||
|
||||
#ifndef WIN32
|
||||
pidwait_deinit();
|
||||
#endif
|
||||
modules_deinit();
|
||||
|
||||
g_free(irssi_dir);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue