fix last commit when building without gstreamer

2007-07-19  Jens Granseuer  <jensgr@gmx.net>

	* configure.in: fix last commit when building without gstreamer

svn path=/trunk/; revision=7865
This commit is contained in:
Jens Granseuer 2007-07-19 09:54:51 +00:00 committed by Jens Granseuer
parent 3c5853ca3f
commit 03f2879bce
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2007-07-19 Jens Granseuer <jensgr@gmx.net>
* configure.in: fix last commit when building without gstreamer
2007-07-15 Jens Granseuer <jensgr@gmx.net>
* capplets/Makefile.am:

View file

@ -433,8 +433,10 @@ AC_SUBST(GST_CFLAGS)
if test "x$have_gstreamer" = "xyes"; then
PKG_CHECK_MODULES(SOUND_CAPPLET, esound)
SOUND_CAPPLET_LIBS="$GST_LIBS -lgstaudio-0.10 -lgstinterfaces-0.10"
SOUND_CAPPLET_LIBS="$SOUND_CAPPLET_LIBS $GST_LIBS -lgstaudio-0.10 -lgstinterfaces-0.10"
SOUND_CAPPLET_CFLAGS="$SOUND_CAPPLET_CFLAGS $GST_CFLAGS"
AC_SUBST(SOUND_CAPPLET_LIBS)
AC_SUBST(SOUND_CAPPLET_CFLAGS)
else
AC_MSG_NOTICE([*** Sound capplet will not be built]);
fi