From f96155d58b601c1cc17a97566f9123af0fdeef24 Mon Sep 17 00:00:00 2001 From: Andreas Gruenbacher Date: Thu, 26 Jan 2006 03:40:50 +0000 Subject: - lib/backup-files.c: Stop using ftw and implement our own dir walking: ftw is a portability nightmare. The foreachdir function is based a proposal from Gary V. Vaughan , thanks! --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ae75ea7..72324ec 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT([quilt],[0.42],[quilt-dev@nongnu.org]) AC_CONFIG_AUX_DIR(config) AC_PREREQ(2.53) -AC_REVISION ($Revision: 1.67 $) +AC_REVISION ($Revision: 1.68 $) PACKAGE_RELEASE=1 AC_SUBST(PACKAGE_RELEASE) @@ -17,8 +17,8 @@ AC_CHECK_FUNCS([strerror]) AC_C_CONST AC_FUNC_STAT -AC_CONFIG_LIBOBJ_DIR(lib) -AC_REPLACE_FUNCS(ftw) +#AC_CONFIG_LIBOBJ_DIR(lib) +#AC_REPLACE_FUNCS() if test "$ac_compiler_gnu" = "yes"; then CFLAGS="$CFLAGS -Wall" -- cgit