[Libsysio-commit] HEAD: libsysio configure.in
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2007-05-09 23:16:25
|
Update of /cvsroot/libsysio/libsysio In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv5699 Modified Files: configure.in Log Message: add ifdef _HAVE_STATVFS Index: configure.in =================================================================== RCS file: /cvsroot/libsysio/libsysio/configure.in,v retrieving revision 1.31 retrieving revision 1.32 diff -u -w -b -B -p -r1.31 -r1.32 --- configure.in 30 Apr 2007 23:24:12 -0000 1.31 +++ configure.in 9 May 2007 23:16:20 -0000 1.32 @@ -69,7 +69,17 @@ AC_ARG_WITH(tests, *) AC_MSG_ERROR(bad value ${withval} for --with-tests) ;; esac], [with_tests=yes]) -AM_CONDITIONAL(WITH_TESTS, test x$with_tests = xyes) +AM_CONDITIONAL(WITH_TESTS, test x$with_tests == xyes) + +AC_ARG_WITH(statvfs, + AC_HELP_STRING([--with-statvfs],[include statvfs code]), + [ case "${withval}" in + yes) ;; + no) ;; + *) AC_MSG_ERROR(bad value ${withval} for --with-statvfs) ;; + esac], + [with_statvfs=no]) +AM_CONDITIONAL(_HAVE_STATVFS, test x$with_statvfs = xyes) AC_ARG_WITH(automount, AC_HELP_STRING([--with-automount@<:@=<automount-file-name>@:>@], @@ -347,8 +357,6 @@ fi # Backward compatibility. The core no longer needs it. We used to check for # this. Now we assume it and, so, want to provoke support from the drivers. # -AC_DEFINE(_HAVE_STATVFS) - AC_MSG_CHECKING(whether .text pseudo-op must be used) AC_CACHE_VAL(sysio_asm_dot_text, [dnl cat > conftest.s <<EOF |