Update of /cvsroot/libsysio/libsysio
In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv18012
Modified Files:
autogen.sh configure.in
Log Message:
Altered tracing support to include a format now.
Re-introducing _HAVE_STATVFS6 for binary compatibility.
Index: autogen.sh
===================================================================
RCS file: /cvsroot/libsysio/libsysio/autogen.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -w -b -B -p -r1.2 -r1.3
--- autogen.sh 14 Apr 2004 15:51:47 -0000 1.2
+++ autogen.sh 2 Jul 2007 18:58:15 -0000 1.3
@@ -1,5 +1,5 @@
#!/bin/sh
aclocal &&
-automake --add-missing --copy &&
+automake --add-missing --copy --force &&
${AUTOCONF:-autoconf}
Index: configure.in
===================================================================
RCS file: /cvsroot/libsysio/libsysio/configure.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -w -b -B -p -r1.33 -r1.34
--- configure.in 9 May 2007 23:36:15 -0000 1.33
+++ configure.in 2 Jul 2007 18:58:15 -0000 1.34
@@ -71,16 +71,6 @@ AC_ARG_WITH(tests,
[with_tests=yes])
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>@:>@],
[with automounts @<:@<automount-file-name>=.mount@:>@]),
@@ -124,6 +114,18 @@ AC_ARG_WITH(defer-init-cwd,
[with_defer_init_cwd=no])
AC_SUBST(DEFER_INIT_CWD)
+AC_ARG_WITH(with-statvfs,
+ AC_HELP_STRING([--with-statvfs],
+ [enable support for statvfs]),
+ [ case "${withval}" in
+ yes) _HAVE_STATVFS=-D_HAVE_STATVFS=1 ;;
+ no) ;;
+ *) AC_MSG_ERROR(bad value ${withval} for --with-statvfs) ;;
+ esac],
+ [with_statvfs=no])
+AM_CONDITIONAL(WITH_STATVFS, test x$with_statvfs = xyes)
+AC_SUBST(_HAVE_STATVFS)
+
AC_ARG_WITH(tracing,
AC_HELP_STRING([--with-tracing],
[enable tracing support]),
@@ -353,10 +355,6 @@ if test x$have_st_gen = xyes; then
AC_DEFINE(HAVE_GENERATION)
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_MSG_CHECKING(whether .text pseudo-op must be used)
AC_CACHE_VAL(sysio_asm_dot_text, [dnl
cat > conftest.s <<EOF
|