mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 04:22:34 +03:00
* configure.in: Use AC_CHECK_TOOL for finding AR. Define
Automake conditional USE_SAMBA_FS if Samba is to be supported in VFS.
This commit is contained in:
parent
4450084787
commit
0ff4756f11
@ -1,3 +1,9 @@
|
|||||||
|
2001-03-14 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* configure.in: Use AC_CHECK_TOOL for finding AR. Define
|
||||||
|
Automake conditional USE_SAMBA_FS if Samba is to be supported
|
||||||
|
in VFS.
|
||||||
|
|
||||||
2001-03-07 Pavel Roskin <proski@gnu.org>
|
2001-03-07 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
* configure.in: Use AM_PROG_CC_STDC if AC_PROG_CC_STDC is not
|
* configure.in: Use AM_PROG_CC_STDC if AC_PROG_CC_STDC is not
|
||||||
|
@ -41,7 +41,7 @@ dnl It's needed until Autoconf 2.50 is released.
|
|||||||
ifdef([AC_PROG_CC_STDC], [AC_PROG_CC_STDC], [AM_PROG_CC_STDC])
|
ifdef([AC_PROG_CC_STDC], [AC_PROG_CC_STDC], [AM_PROG_CC_STDC])
|
||||||
AC_HEADER_MAJOR
|
AC_HEADER_MAJOR
|
||||||
AC_C_CONST
|
AC_C_CONST
|
||||||
AC_PATH_PROG(AR, ar, ar)
|
AC_CHECK_TOOL(AR, ar, ar)
|
||||||
|
|
||||||
AC_CHECK_PROGS(X11_WWW,netscape arena Mosaic chimera)
|
AC_CHECK_PROGS(X11_WWW,netscape arena Mosaic chimera)
|
||||||
if test x"$X11_WWW" = x; then
|
if test x"$X11_WWW" = x; then
|
||||||
@ -975,6 +975,8 @@ fi],
|
|||||||
AC_CONFIG_SUBDIRS([vfs/samba])
|
AC_CONFIG_SUBDIRS([vfs/samba])
|
||||||
fi])
|
fi])
|
||||||
|
|
||||||
|
AM_CONDITIONAL([USE_SAMBA_FS], [test "x$SAMBAFILES" != x])
|
||||||
|
|
||||||
AC_OUTPUT([
|
AC_OUTPUT([
|
||||||
Make.common
|
Make.common
|
||||||
Makefile
|
Makefile
|
||||||
|
Loading…
Reference in New Issue
Block a user