comparison configure.ac @ 331:5c4a9e4ba3be trunk

[svn] - remove gnomevfs reference
author nenolod
date Mon, 04 Dec 2006 15:26:12 -0800
parents f3f77cbd58f3
children bc3bae2880ec
comparison
equal deleted inserted replaced
330:74df3bd6f472 331:5c4a9e4ba3be
210 else 210 else
211 CONFIGDB_BACKEND="rcfile" 211 CONFIGDB_BACKEND="rcfile"
212 fi 212 fi
213 213
214 AC_SUBST(CONFIGDB_BACKEND) 214 AC_SUBST(CONFIGDB_BACKEND)
215
216 dnl GnomeVFS support
217
218 AC_ARG_ENABLE( gnome-vfs,
219 [ --enable-gnome-vfs enable GnomeVFS support (default=disabled)],
220 [enable_gnomevfs=$enableval],
221 [enable_gnomevfs="no"]
222 )
223
224 if test "$enable_gnomevfs" = "yes"; then
225 PKG_CHECK_MODULES(GNOMEVFS, [gnome-vfs-2.0 >= 2.6.0],
226 [
227 AC_DEFINE(HAVE_GNOME_VFS, , [Define if building with GnomeVFS support])
228 ADD_PC_REQUIRES([gnome-vfs-2.0 >= 2.6.0])
229 ],
230 [AC_MSG_ERROR([Cannot find GnomeVFS])]
231 )
232 fi
233
234 if test "$enable_gnomevfs" = "yes"; then
235 VFS_BACKEND="gnome"
236 else
237 VFS_BACKEND="stdio"
238 fi
239
240 AC_SUBST(VFS_BACKEND)
241 215
242 dnl Check for esound 216 dnl Check for esound
243 217
244 AC_ARG_ENABLE( esd, 218 AC_ARG_ENABLE( esd,
245 [ --disable-esd disable esound output plugin [default=enabled]], 219 [ --disable-esd disable esound output plugin [default=enabled]],