* configure.in: Only configure in vfs/samba if smbfs support is

enabled even with Autoconf 2.13.
This commit is contained in:
Pavel Roskin 2001-02-07 16:41:16 +00:00
parent 1c3d0e0d62
commit 20e31fd858
2 changed files with 15 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2001-02-07 Pavel Roskin <proski@gnu.org>
* configure.in: Only configure in vfs/samba if smbfs support is
enabled even with Autoconf 2.13.
2001-01-30 Pavel Roskin <proski@gnu.org>
* macros/gnome-vfs.m4 (GNOME_WITH_VFS): Fix mishandling of

View File

@ -959,9 +959,17 @@ AC_SUBST(PCENTRULE)
dnl
dnl Output configuration files
dnl
dnl It's a hack to accomodate both Autoconf 2.13 and the 2.49x series,
dnl It's needed until Autoconf 2.50 is released.
ifelse(AC_ACVERSION, [2.13],
[mc_subdirs=
if test "x$SAMBAFILES" != x; then
AC_CONFIG_SUBDIRS(vfs/samba)
fi
mc_subdirs=vfs/samba
AC_CONFIG_SUBDIRS([$mc_subdirs])
fi],
[if test "x$SAMBAFILES" != x; then
AC_CONFIG_SUBDIRS([vfs/samba])
fi])
AC_OUTPUT([
Make.common