Re: [GnomeMeeting-devel-list] DBUS component



Le mercredi 27 octobre 2004 à 11:51 +0200, Damien Sandras a écrit :
> That works fine, but the gaim GUI is frozen during the time GnomeMeeting
> starts.

This is fixed in the last version I made public
http://sourceforge.net/mailarchive/forum.php?thread_id=5862628&forum_id=9587

Notice that the existence of that plugin wasn't known on this
mailing-list yet ;-)

Also, I don't remember if it was announced that you accepted the patch
in cvs: you just have to configure gnomemeeting with --enable-dbus. And
even that isn't necessary if you apply the attached patch that makes the
DBUS component default (but keeps --disable-dbus not to be a hindrance
to the win32 port!).

> It would also be nice if you could specify your URL yourself and see it
> published to other users, then it would work with only once click.
> 
> I think they said it was possible.

JEP 0030 looks like it, but I haven't had much more comments.

Snark
diff -urN gnomemeeting/configure.in gnomemeeting.patched/configure.in
--- gnomemeeting/configure.in	2004-10-27 09:52:45 +0200
+++ gnomemeeting.patched/configure.in	2004-10-30 18:57:42 +0200
@@ -410,23 +410,23 @@
 dnl   Check for DBUS
 dnl #########################################################################
 AC_ARG_ENABLE(dbus,
-	[  --enable-dbus       Enable the DBUS component.],
-	enable_dbus=yes, enable_dbus=no)
+	[  --disable-dbus       Disable the DBUS component.],
+	disable_dbus=yes, disable_dbus=no)
 
 AC_MSG_CHECKING(whether the DBUS component should be compiled in)
-if test x"${enable_dbus}" = xyes ; then
+if test x"${disable_dbus}" = xno ; then
    AC_MSG_RESULT([yes])
 else
    AC_MSG_RESULT([no])
 fi
 
-if test x"${enable_dbus}" = xyes ; then
+if test x"${disable_dbus}" = xno ; then
    PKG_CHECK_MODULES(DBUS,  dbus-1 = 0.22 dbus-glib-1 = 0.22)
    GNOMEMEETING_CFLAGS="$GNOMEMEETING_CFLAGS $DBUS_CFLAGS -DHAS_DBUS"
    GNOMEMEETING_LIBS="$GNOMEMEETING_LIBS $DBUS_LIBS"
 fi
-AM_CONDITIONAL(HAS_DBUS, test x"${enable_dbus}" = xyes)
-AM_CONDITIONAL(DBUS_SERVICES_INSTALL, test x"${enable_dbus}" = xyes)
+AM_CONDITIONAL(HAS_DBUS, test x"${disable_dbus}" = xno)
+AM_CONDITIONAL(DBUS_SERVICES_INSTALL, test x"${disable_dbus}" = xno)
 
 dnl ###########################################################################
 dnl  The various CFLAGS are merged into GNOMEMEETING_CFLAGS and 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]