diff options
author | Claudio Ciccani <klan@users.sourceforge.net> | 2006-01-29 16:00:51 +0000 |
---|---|---|
committer | Claudio Ciccani <klan@users.sourceforge.net> | 2006-01-29 16:00:51 +0000 |
commit | 68633335e5f1ed71557db352e9a1a5db166bc8b0 (patch) | |
tree | 973bde16dc151fcc12cb98ebf21d8ad9874da186 /configure.ac | |
parent | 19d5c8330362554efba5c63956f11e727ccfb9a0 (diff) | |
download | xine-lib-68633335e5f1ed71557db352e9a1a5db166bc8b0.tar.gz xine-lib-68633335e5f1ed71557db352e9a1a5db166bc8b0.tar.bz2 |
Imported FusionSound audio driver.
CVS patchset: 7858
CVS date: 2006/01/29 16:00:51
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index ccdae89ef..77fadf58d 100644 --- a/configure.ac +++ b/configure.ac @@ -1346,6 +1346,26 @@ 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 |