summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2006-01-21 23:45:37 +0000
committerAndreas Gruenbacher <agruen@suse.de>2006-01-21 23:45:37 +0000
commit91a883abd8138ea0c864cc34b46a7359d4505a21 (patch)
treec964a64ce76dba87a1d1010feef0b60a788055dc /configure.ac
parent7650e642f6405339620b850ec12fd53238fc55d4 (diff)
downloadquilt-91a883abd8138ea0c864cc34b46a7359d4505a21.tar.gz
- Add fallback ftw implementation for systems that don't have it.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index c32ab80..c677f47 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.63 $)
+AC_REVISION ($Revision: 1.64 $)
PACKAGE_RELEASE=1
AC_SUBST(PACKAGE_RELEASE)
@@ -17,6 +17,9 @@ AC_CHECK_FUNCS([strerror])
AC_C_CONST
AC_FUNC_STAT
+AC_CONFIG_LIBOBJ_DIR(lib)
+AC_REPLACE_FUNCS(ftw)
+
if test "$ac_compiler_gnu" = "yes"; then
CFLAGS="$CFLAGS -Wall"
fi