summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-26 03:40:50 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-26 03:40:50 +0000
commitf96155d58b601c1cc17a97566f9123af0fdeef24 (patch)
tree45467b92489ff3e3b80dbd76ac05cb942cdf396c /configure.ac
parentaff07add99f56ae67ac58cb334881d3197d97a21 (diff)
downloadquilt-f96155d58b601c1cc17a97566f9123af0fdeef24.tar.gz
- 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 <gary@gnu.org>, thanks!
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
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"