Fixed --disable-plugins option in configure script
This commit is contained in:
parent
d9c032fee3
commit
8d4497a764
@ -5,6 +5,7 @@ ChangeLog - 2006-03-24
|
||||
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* fixed --disable-plugins option in configure script
|
||||
* added /setp command (set plugin options)
|
||||
* fixed high CPU usage when running under a screen that has been killed
|
||||
* aliases are executed before WeeChat/IRC commands, /builtin command added
|
||||
|
@ -184,6 +184,14 @@ fi
|
||||
|
||||
PLUGINS_LIBS=
|
||||
|
||||
if test "x$enable_plugins" != "xyes" ; then
|
||||
enable_plugins="no"
|
||||
enable_perl="no"
|
||||
enable_python="no"
|
||||
enable_ruby="no"
|
||||
enable_lua="no"
|
||||
fi
|
||||
|
||||
if test "x$enable_perl" = "xyes" ; then
|
||||
enable_plugins="yes"
|
||||
|
||||
|
@ -392,9 +392,11 @@ gui_main_loop ()
|
||||
server_check_away ();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#ifdef PLUGINS
|
||||
/* call timer handlers */
|
||||
plugin_timer_handler_exec ();
|
||||
#endif
|
||||
}
|
||||
|
||||
/* read keyboard */
|
||||
|
@ -5,6 +5,7 @@ ChangeLog - 2006-03-24
|
||||
|
||||
|
||||
Version 0.1.9 (under dev!):
|
||||
* fixed --disable-plugins option in configure script
|
||||
* added /setp command (set plugin options)
|
||||
* fixed high CPU usage when running under a screen that has been killed
|
||||
* aliases are executed before WeeChat/IRC commands, /builtin command added
|
||||
|
@ -184,6 +184,14 @@ fi
|
||||
|
||||
PLUGINS_LIBS=
|
||||
|
||||
if test "x$enable_plugins" != "xyes" ; then
|
||||
enable_plugins="no"
|
||||
enable_perl="no"
|
||||
enable_python="no"
|
||||
enable_ruby="no"
|
||||
enable_lua="no"
|
||||
fi
|
||||
|
||||
if test "x$enable_perl" = "xyes" ; then
|
||||
enable_plugins="yes"
|
||||
|
||||
|
@ -392,9 +392,11 @@ gui_main_loop ()
|
||||
server_check_away ();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#ifdef PLUGINS
|
||||
/* call timer handlers */
|
||||
plugin_timer_handler_exec ();
|
||||
#endif
|
||||
}
|
||||
|
||||
/* read keyboard */
|
||||
|
Loading…
x
Reference in New Issue
Block a user