mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +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,9 +1,7 @@
|
|||
# NOTE: this is printed through printf()-like function,
|
||||
# so no extra percent characters.
|
||||
|
||||
# %%d : must be first - 1 if perl libraries are to be linked
|
||||
# statically with irssi binary, 0 if not
|
||||
# %%s : must be second - use Irssi; use Irssi::Irc; etc..
|
||||
# %%s : use Irssi; use Irssi::Irc; etc..
|
||||
package Irssi::Core;
|
||||
|
||||
use Symbol;
|
||||
|
|
@ -15,7 +13,7 @@ $SIG{__WARN__} = sub {
|
|||
};
|
||||
|
||||
sub is_static {
|
||||
return %d;
|
||||
return 0;
|
||||
}
|
||||
|
||||
sub destroy {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue