Change name of automake constant 'USE_MCFS' to 'ENABLE_VFS_MCFS'

This commit is contained in:
Slava Zanko 2009-05-11 13:42:49 +03:00
parent f49ce170f0
commit 428ea1b406
9 changed files with 9 additions and 24 deletions

View File

@ -545,7 +545,7 @@ AM_CONDITIONAL(USE_VFS, [test "x$use_vfs" = xyes])
AM_CONDITIONAL(USE_VFS_NET, [test x"$use_net_code" = xtrue])
AM_CONDITIONAL(USE_UNDEL_FS, [test -n "$use_undelfs"])
AM_CONDITIONAL(USE_SAMBA_FS, [test -n "$use_smbfs"])
AM_CONDITIONAL(USE_MCFS, [test -n "$use_mcfs"])
AM_CONDITIONAL(ENABLE_VFS_MCFS, [test -n "$use_mcfs"])
AM_CONDITIONAL(CHARSET, [test -n "$have_charset"])
AM_CONDITIONAL(CONS_SAVER, [test -n "$cons_saver"])

View File

@ -1,7 +1,7 @@
DIST_SUBDIRS = es hu it pl ru sr
SUBDIRS = $(DOC_LINGUAS)
if USE_MCFS
if ENABLE_VFS_MCFS
man_MANS = mc.1 mcedit.1 mcview.1 mcserv.8
else
man_MANS = mc.1 mcedit.1 mcview.1

View File

@ -1,7 +1,4 @@
LANG=es
mandir = @mandir@/$(LANG)
if USE_MCFS
man_MANS = mc.1
else
man_MANS = mc.1
endif

View File

@ -1,7 +1,4 @@
LANG=hu
mandir = @mandir@/$(LANG)
if USE_MCFS
man_MANS = mc.1
else
man_MANS = mc.1
endif

View File

@ -1,7 +1,4 @@
LANG=it
mandir = @mandir@/$(LANG)
if USE_MCFS
man_MANS = mc.1
else
man_MANS = mc.1
endif

View File

@ -1,7 +1,4 @@
LANG=pl
mandir = @mandir@/$(LANG)
if USE_MCFS
man_MANS = mc.1
else
man_MANS = mc.1
endif

View File

@ -1,7 +1,4 @@
LANG=ru
mandir = @mandir@/$(LANG)
if USE_MCFS
man_MANS = mc.1
else
man_MANS = mc.1
endif

View File

@ -1,6 +1,6 @@
LANG=sr
mandir = @mandir@/$(LANG)
if USE_MCFS
if ENABLE_VFS_MCFS
man_MANS = mc.1 mcserv.8
else
man_MANS = mc.1

View File

@ -87,7 +87,7 @@ else
libvfs_mc_a_SOURCES = $(NONETFILES)
endif
if USE_MCFS
if ENABLE_VFS_MCFS
sbin_PROGRAMS = mcserv
endif