From 68633335e5f1ed71557db352e9a1a5db166bc8b0 Mon Sep 17 00:00:00 2001 From: Claudio Ciccani Date: Sun, 29 Jan 2006 16:00:51 +0000 Subject: Imported FusionSound audio driver. CVS patchset: 7858 CVS date: 2006/01/29 16:00:51 --- configure.ac | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ccdae89ef..77fadf58d 100644 --- a/configure.ac +++ b/configure.ac @@ -1345,6 +1345,26 @@ fi AM_CONDITIONAL(HAVE_ARTS, test x"$no_arts" != "xyes") +dnl --------------------------------------------- +dnl FusionSound support +dnl --------------------------------------------- + +AC_ARG_ENABLE([fusionsound], + AC_HELP_STRING([--enable-fusionsound], [build with fusionsound support]), + [with_fusionsound=$enableval], [with_fusionsound=no]) + +if test "x$with_fusionsound" = "xyes"; then + PKG_CHECK_MODULES(FUSIONSOUND, fusionsound >= 0.9.23, + AC_DEFINE(HAVE_FUSIONSOUND,1,[Define to 1 if you have FusionSound.]), + AC_MSG_RESULT(*** All of FusionSound dependent parts will be disabled ***)) + AC_SUBST(FUSIONSOUND_CFLAGS) + AC_SUBST(FUSIONSOUND_LIBS) +else + no_fusionsound=yes +fi +AM_CONDITIONAL(HAVE_FUSIONSOUND, test x"$no_fusionsound" != "xyes") + + dnl --------------------------------------------- dnl gnome-vfs support dnl --------------------------------------------- @@ -2662,6 +2682,9 @@ fi if test x"$no_arts" != "xyes"; then echo " - arts (aRts - KDE soundserver)" fi +if test x"$no_fusionsound" != "xyes"; then + echo " - fusionsound (FusionSound driver)" +fi if test x"$have_sunaudio" = "xyes"; then echo " - sun ()" fi -- cgit v1.2.3