mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-03 10:04:32 +03:00
* 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>
|
2001-01-30 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* macros/gnome-vfs.m4 (GNOME_WITH_VFS): Fix mishandling of
|
* 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
|
||||||
dnl Output configuration files
|
dnl Output configuration files
|
||||||
dnl
|
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
|
if test "x$SAMBAFILES" != x; then
|
||||||
AC_CONFIG_SUBDIRS(vfs/samba)
|
mc_subdirs=vfs/samba
|
||||||
fi
|
AC_CONFIG_SUBDIRS([$mc_subdirs])
|
||||||
|
fi],
|
||||||
|
[if test "x$SAMBAFILES" != x; then
|
||||||
|
AC_CONFIG_SUBDIRS([vfs/samba])
|
||||||
|
fi])
|
||||||
|
|
||||||
AC_OUTPUT([
|
AC_OUTPUT([
|
||||||
Make.common
|
Make.common
|
||||||
|
Loading…
Reference in New Issue
Block a user