diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2003-01-13 12:38:08 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2003-01-13 12:38:08 +0000 |
commit | d6ca6d9d6694c6df2249ecdb4d202ce39edaa3ac (patch) | |
tree | fd4b3dc507af955454ef685af3b645abbc6e663f /configure.ac | |
parent | 9a11348913e999fc23bfe1dcb463e8a0e9e25686 (diff) | |
download | xine-lib-d6ca6d9d6694c6df2249ecdb4d202ce39edaa3ac.tar.gz xine-lib-d6ca6d9d6694c6df2249ecdb4d202ce39edaa3ac.tar.bz2 |
- gnome-vfs plugin added
CVS patchset: 3891
CVS date: 2003/01/13 12:38:08
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 49c2c2371..8df2cc8f4 100644 --- a/configure.ac +++ b/configure.ac @@ -616,6 +616,22 @@ AM_PATH_ARTS(0.9.5, AM_CONDITIONAL(HAVE_ARTS, test x"$no_arts" != "xyes") dnl --------------------------------------------- +dnl gnome-vfs support +dnl --------------------------------------------- +PKG_CHECK_MODULES(GNOME_VFS, gnome-vfs-2.0, + no_gnome_vfs=no, + no_gnome_vfs=yes) +AC_SUBST(GNOME_VFS_CFLAGS) +AC_SUBST(GNOME_VFS_LIBS) +if test x"$no_gnome_vfs" != "xyes"; then +AC_DEFINE(HAVE_GNOME_VFS,1,[Define this if you have gnome-vfs installed]) +else +AC_MSG_RESULT(*** All of the gnome-vfs dependent parts will be disabled ***) +fi +AM_CONDITIONAL(HAVE_GNOME_VFS, test x"$no_gnome_vfs" != "xyes") + + +dnl --------------------------------------------- dnl SUN style audio interface dnl --------------------------------------------- AC_MSG_CHECKING(for Sun audio support) @@ -1276,6 +1292,9 @@ if test x"$have_cdrom_ioctls" = "xyes"; then echo " - dvd - vcd" echo " - cdda" fi +if test x"$no_gnome_vfs" = "xno"; then + echo " - gnome-vfs" +fi echo "" dnl Demuxers |