mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
0e6b076666
* Remove m4/* files * Reorganize all M4-stuff into m4.include subdur * move doxygen-include.am into doc/doxygen-include.am
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
dnl AC_MC_EXTFS_CHECKS
|
|
dnl Check for tools used in extfs scripts.
|
|
|
|
dnl FIXME: make this configurable
|
|
AC_DEFUN([AC_MC_EXTFS_CHECKS], [
|
|
AC_PATH_PROG([ZIP], [zip], [/usr/bin/zip])
|
|
AC_PATH_PROG([UNZIP], [unzip], [/usr/bin/unzip])
|
|
AC_CACHE_CHECK([for zipinfo code in unzip], [mc_cv_have_zipinfo],
|
|
[mc_cv_have_zipinfo=no
|
|
if $UNZIP -Z </dev/null >/dev/null 2>&1; then
|
|
mc_cv_have_zipinfo=yes
|
|
fi])
|
|
if test "x$mc_cv_have_zipinfo" = xyes; then
|
|
HAVE_ZIPINFO=1
|
|
else
|
|
HAVE_ZIPINFO=0
|
|
fi
|
|
AC_SUBST([HAVE_ZIPINFO])
|
|
AC_PATH_PROG([PERL], [perl], [/usr/bin/perl])
|
|
])
|
|
|
|
|
|
dnl Enable Extfs (classic)
|
|
AC_DEFUN([AC_MC_VFS_EXTFS],
|
|
[
|
|
AC_ARG_ENABLE([vfs-extfs],
|
|
[ --disable-vfs-extfs Support for extfs [[yes]]])
|
|
if test "$enable_vfs_extfs" != "no"; then
|
|
if test "$enable_mvfs_extfs" = "yes" ; then
|
|
AC_ERROR([Internal extfs conflicts with mvfs-extfs])
|
|
fi
|
|
AC_MC_EXTFS_CHECKS
|
|
enable_vfs_extfs="yes"
|
|
AC_MC_VFS_ADDNAME([extfs])
|
|
AC_DEFINE([ENABLE_VFS_EXTFS], [1], [Support for extfs])
|
|
fi
|
|
AM_CONDITIONAL(ENABLE_VFS_EXTFS, [test "$enable_vfs_extfs" = "yes"])
|
|
])
|