mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-01 00:54:24 +03:00
* acinclude.m4: New options for smbfs:
--with-configdir=DIR Where the Samba configuration files are (/etc) --with-codepagedir=DIR Where the Samba codepage files are
This commit is contained in:
parent
e97b30ad04
commit
1fd13c4732
@ -1,3 +1,9 @@
|
|||||||
|
2002-01-11 Andrew V. Samoilov <kai@cmail.ru>
|
||||||
|
|
||||||
|
* acinclude.m4: New options for smbfs:
|
||||||
|
--with-configdir=DIR Where the Samba configuration files are (/etc)
|
||||||
|
--with-codepagedir=DIR Where the Samba codepage files are
|
||||||
|
|
||||||
2002-01-11 Pavel Roskin <proski@gnu.org>
|
2002-01-11 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* syntax/xml.syntax: New file - hightlighting for XML.
|
* syntax/xml.syntax: New file - hightlighting for XML.
|
||||||
|
33
acinclude.m4
33
acinclude.m4
@ -114,6 +114,39 @@ AC_DEFUN([MC_WITH_VFS],[
|
|||||||
AC_SUBST(smbfs)
|
AC_SUBST(smbfs)
|
||||||
AC_SUBST(SAMBAFILES)
|
AC_SUBST(SAMBAFILES)
|
||||||
|
|
||||||
|
if test "x$smbfs" != x ; then
|
||||||
|
#################################################
|
||||||
|
# set Samba configuration directory location
|
||||||
|
configdir="/etc"
|
||||||
|
AC_ARG_WITH(configdir,
|
||||||
|
[ --with-configdir=DIR Where the Samba configuration files are (/etc)],
|
||||||
|
[ case "$withval" in
|
||||||
|
yes|no)
|
||||||
|
#
|
||||||
|
# Just in case anybody does it
|
||||||
|
#
|
||||||
|
AC_MSG_WARN([--with-configdir called without argument - will use default])
|
||||||
|
;;
|
||||||
|
* )
|
||||||
|
configdir="$withval"
|
||||||
|
;;
|
||||||
|
esac]
|
||||||
|
)
|
||||||
|
AC_SUBST(configdir)
|
||||||
|
|
||||||
|
AC_ARG_WITH(codepagedir,
|
||||||
|
[ --with-codepagedir=DIR Where the Samba codepage files are],
|
||||||
|
[ case "$withval" in
|
||||||
|
yes|no)
|
||||||
|
#
|
||||||
|
# Just in case anybody does it
|
||||||
|
#
|
||||||
|
AC_MSG_WARN([--with-codepagedir called without argument - will use default])
|
||||||
|
;;
|
||||||
|
esac]
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
|
||||||
dnl
|
dnl
|
||||||
dnl The termnet support
|
dnl The termnet support
|
||||||
dnl
|
dnl
|
||||||
|
Loading…
Reference in New Issue
Block a user