# HG changeset patch # User Rob Flynn # Date 956679557 0 # Node ID a09fabd11900d9c31e5b35cb4071430aa5182ac7 # Parent 7b5d56a74b712ac2e750c9796896e7f5ecef6e4f [gaim-migrate @ 184] Plugins load by default, --disable-plugins added committer: Tailor Script diff -r 7b5d56a74b71 -r a09fabd11900 ChangeLog --- a/ChangeLog Tue Apr 25 06:51:20 2000 +0000 +++ b/ChangeLog Tue Apr 25 16:19:17 2000 +0000 @@ -1,6 +1,7 @@ GAIM: The Pimpin' Penguin IM Clone thats good for the soul! version 0.9.15: + * Plugin support enabled by default (oops) version 0.9.14: * Numerous Fixes by G. Sumner Hayes (buffer over flow patches, diff -r 7b5d56a74b71 -r a09fabd11900 README.plugins --- a/README.plugins Tue Apr 25 06:51:20 2000 +0000 +++ b/README.plugins Tue Apr 25 16:19:17 2000 +0000 @@ -5,10 +5,9 @@ go on. We'll continue developing them in our free time but we ask you to do the same. If you have any suggestions for them, let us know. -To make it so that gaim can use plugins, instead of plain ol' ./configure, -give it the option --enable-plugins. Then all kinds of good things will be -added, like buttons to let you actually load the plugins and things like -that. +If you do not wish to enable the plugin support within GAIM, run the +./configure script with the --disable-plugins option and recompile your +source code. This will stop any plugins from loading. Currently, they are not compiled when you perform a make and make install. If you wish to make use of the gaim plugins, enter the directory where you diff -r 7b5d56a74b71 -r a09fabd11900 configure.in --- a/configure.in Tue Apr 25 06:51:20 2000 +0000 +++ b/configure.in Tue Apr 25 16:19:17 2000 +0000 @@ -35,7 +35,7 @@ AC_ARG_ENABLE(esd, [ --disable-esd Turn off ESD (default=auto)],enable_esd=no,enable_esd=yes) AC_ARG_ENABLE(oscar, [ --enable-oscar Enable Oscar support (experimental)],enable_oscar=yes,) AC_ARG_ENABLE(nas, [ --enable-nas Enable NAS (Network Audio System) support],enable_nas=yes,) -AC_ARG_ENABLE(plugins, [ --enable-plugins compile with plugin support],enable_plugins=yes,) +AC_ARG_ENABLE(plugins, [ --disable-plugins compile with out plugin support],enable_plugins=no,enable_plugins=yes) GAIM_CFLAGS="$CFLAGS -I../" GAIM_LIBS="$LIBS"