Use regular canberra not gtk

This commit is contained in:
TingPing 2013-04-27 20:28:39 -04:00
parent 5bb284267b
commit bb878848f7
2 changed files with 7 additions and 5 deletions

View File

@ -616,12 +616,12 @@ dnl ** LIBCANBERRA ******************************************************
dnl *********************************************************************
if test "x$libcanberra" = "xyes" ; then
PKG_CHECK_MODULES(LIBCANBERRAGTK, libcanberra-gtk >= 0.22, [], [
PKG_CHECK_MODULES(LIBCANBERRA, libcanberra >= 0.22, [], [
libcanberra=no
])
if test "$libcanberra" != "no" ; then
GUI_LIBS="$GUI_LIBS $LIBCANBERRAGTK_LIBS"
GUI_CFLAGS="$GUI_CFLAGS $LIBCANBERRAGTK_CFLAGS"
COMMON_LIBS="$COMMON_LIBS $LIBCANBERRA_LIBS"
COMMON_CFLAGS="$COMMON_CFLAGS $LIBCANBERRA_CFLAGS"
AC_DEFINE(USE_LIBCANBERRA)
fi
fi

View File

@ -57,7 +57,7 @@
#endif
#ifdef USE_LIBCANBERRA
#include <canberra-gtk.h>
#include <canberra.h>
#endif
GdkPixmap *channelwin_pix;
@ -674,7 +674,9 @@ fe_beep (session *sess)
}
#else
#ifdef USE_LIBCANBERRA
if (ca_context_play (ca_gtk_context_get (), 0,
ca_context *con;
ca_context_create (&con);
if (ca_context_play (con, 0,
CA_PROP_APPLICATION_NAME, DISPLAY_NAME,
CA_PROP_EVENT_ID, "message-new-instant", NULL) != 0)
#endif