Update of /cvsroot/gaim/gaim
In directory usw-pr-cvs1:/tmp/cvs-serv18273
Modified Files:
configure.ac configure.in
Log Message:
Phase II. No longer do you have to worry about protocol plugins. When
Gaim probes plugins on load, it will detect protocol plugins and add them
to the list of available protocols. When you try to log an account on with
one of them, Gaim will automatically load the plugin--when no more accounts
need the protocol--Gaim will automatically unload it. Protocol plugins are
no longer available in the plugins ui, and no protocols are compiled statically
by default.
Index: configure.ac
===================================================================
RCS file: /cvsroot/gaim/gaim/configure.ac,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -d -r1.82 -r1.83
--- configure.ac 26 Sep 2002 07:37:51 -0000 1.82
+++ configure.ac 30 Sep 2002 01:05:13 -0000 1.83
@@ -67,7 +67,7 @@
AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes")
AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes)
AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes)
-AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar")
+AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="")
if test "x$STATIC_PRPLS" = "xall" ; then
STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr"
fi
@@ -78,7 +78,7 @@
for i in $STATIC_PRPLS ; do
STATIC_LINK_LIBS="$STATIC_LINK_LIBS protocols/$i/lib$i.a"
extern_init="$extern_init extern void ${i}_init(struct prpl *);"
- load_proto="$load_proto load_protocol(${i}_init, sizeof(struct prpl));"
+ load_proto="$load_proto load_protocol(${i}_init);"
case $i in
gg) static_gg=yes ;;
irc) static_irc=yes ;;
Index: configure.in
===================================================================
RCS file: /cvsroot/gaim/gaim/configure.in,v
retrieving revision 1.131
retrieving revision 1.132
diff -u -d -r1.131 -r1.132
--- configure.in 26 Sep 2002 07:37:51 -0000 1.131
+++ configure.in 30 Sep 2002 01:05:13 -0000 1.132
@@ -66,7 +66,7 @@
AM_CONDITIONAL(DISTRIB, test "x$enable_distrib" = "xyes")
AC_ARG_ENABLE(multi, [ --disable-multi disable multiple connections],,enable_multi=yes)
AC_ARG_ENABLE(prpls, [ --disable-prpls don't build dynamic protocol plugins],,enable_prpls=yes)
-AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="oscar")
+AC_ARG_WITH(static-prpls, [ --with-static-prpls link in certain protocols statically],[STATIC_PRPLS=`echo $withval | $sedpath 's/,/ /g'`],STATIC_PRPLS="")
if test "x$STATIC_PRPLS" = "xall" ; then
STATIC_PRPLS="gg irc jabber msn napster oscar toc yahoo zephyr"
fi
|