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