mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
* acinclude.m4 (AC_GET_FS_INFO): Specify includes when checking
for sys/mount.h.
This commit is contained in:
parent
19437f2557
commit
c6a0eeb4ff
@ -1,3 +1,8 @@
|
||||
2001-08-20 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* acinclude.m4 (AC_GET_FS_INFO): Specify includes when checking
|
||||
for sys/mount.h.
|
||||
|
||||
2001-08-19 Andras Timar <timar@gnome.hu>
|
||||
|
||||
* lib/Makefile.am: Added Hungarian hints
|
||||
|
@ -44,7 +44,11 @@ dnl
|
||||
AC_DEFUN([AC_GET_FS_INFO], [
|
||||
AC_CHECK_HEADERS(fcntl.h sys/dustat.h sys/param.h sys/statfs.h sys/fstyp.h)
|
||||
AC_CHECK_HEADERS(mnttab.h mntent.h utime.h sys/statvfs.h sys/vfs.h)
|
||||
AC_CHECK_HEADERS(sys/mount.h sys/filsys.h sys/fs_types.h)
|
||||
AC_CHECK_HEADERS(sys/filsys.h sys/fs_types.h)
|
||||
AC_CHECK_HEADERS(sys/mount.h, , , [
|
||||
#include <sys/param.h>
|
||||
#include <sys/stat.h>
|
||||
])
|
||||
AC_CHECK_FUNCS(getmntinfo)
|
||||
|
||||
dnl This configure.in code has been stolen from GNU fileutils-3.12. Its
|
||||
|
Loading…
Reference in New Issue
Block a user