Added checks for statfs and statvfs
This commit is contained in:
parent
3b317bd6e8
commit
282ffb1ac9
@ -205,6 +205,12 @@
|
|||||||
/* Define if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
/* Define if the `S_IS*' macros in <sys/stat.h> do not work properly. */
|
||||||
#undef STAT_MACROS_BROKEN
|
#undef STAT_MACROS_BROKEN
|
||||||
|
|
||||||
|
/* Define if you have the statfs function */
|
||||||
|
#undef HAVE_STATFS
|
||||||
|
|
||||||
|
/* Define if you have the statvfs function */
|
||||||
|
#undef HAVE_STATVFS
|
||||||
|
|
||||||
/* Define if you have the ANSI C header files. */
|
/* Define if you have the ANSI C header files. */
|
||||||
#undef STDC_HEADERS
|
#undef STDC_HEADERS
|
||||||
|
|
||||||
|
4
configure
vendored
4
configure
vendored
@ -8627,7 +8627,9 @@ rm -f conftest.data
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
for ac_func in gettimeofday re_comp select
|
|
||||||
|
|
||||||
|
for ac_func in gettimeofday re_comp select statfs statvfs
|
||||||
do
|
do
|
||||||
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
|
||||||
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
{ echo "$as_me:$LINENO: checking for $ac_func" >&5
|
||||||
|
@ -243,7 +243,7 @@ AC_PROG_GCC_TRADITIONAL
|
|||||||
AC_FUNC_MEMCMP
|
AC_FUNC_MEMCMP
|
||||||
AC_TYPE_SIGNAL
|
AC_TYPE_SIGNAL
|
||||||
AC_FUNC_UTIME_NULL
|
AC_FUNC_UTIME_NULL
|
||||||
AC_CHECK_FUNCS(gettimeofday re_comp select)
|
AC_CHECK_FUNCS(gettimeofday re_comp select statfs statvfs)
|
||||||
AC_CHECK_FUNCS(getspnam initgroups updwtmp updwtmpx)
|
AC_CHECK_FUNCS(getspnam initgroups updwtmp updwtmpx)
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user