mirror of https://github.com/MidnightCommander/mc
* configure.in: Only configure in vfs/samba if smbfs support is
enabled even with Autoconf 2.13.
This commit is contained in:
parent
1c3d0e0d62
commit
20e31fd858
|
@ -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
|
||||
|
|
12
configure.in
12
configure.in
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue