mirror of
https://github.com/irssi/irssi.git
synced 2026-08-18 08:02:13 +02:00
remove deprecated defines
- PERL_STATIC_LIBS (was not tested anymore) - HAVE_GMODULE (always required) - HAVE_STATIC_IRC - HAVE_STATIC_PERL - HAVE_SOCKS (was not working properly) - USE_GREGEX (we use it)
This commit is contained in:
parent
3a5f93bbcc
commit
883510a3fd
22 changed files with 20 additions and 338 deletions
|
|
@ -1,5 +1,5 @@
|
|||
#ifndef IRSSI_IRC_DCC_DCC_QUEUE_H_
|
||||
#define IRSSI_IRC_DCC_DCC_QUEUE_H_
|
||||
#ifndef IRSSI_IRC_DCC_DCC_QUEUE_H
|
||||
#define IRSSI_IRC_DCC_DCC_QUEUE_H
|
||||
|
||||
#include <irssi/src/irc/dcc/dcc-chat.h>
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
#ifdef HAVE_STATIC_IRC
|
||||
void irc_core_init(void); void irc_core_deinit(void);
|
||||
void irc_dcc_init(void);void irc_flood_init(void);void irc_notifylist_init(void);
|
||||
void irc_notifylist_deinit(void);void irc_flood_deinit(void);void irc_dcc_deinit(void);
|
||||
void irc_init(void) { irc_core_init(); irc_dcc_init(); irc_flood_init(); irc_notifylist_init(); }
|
||||
void irc_deinit(void) { irc_notifylist_deinit(); irc_flood_deinit(); irc_dcc_deinit(); irc_core_deinit(); }
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue