From 6a6975f305ea142cf7b103bb7c064d8ef03e1547 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 8 Apr 2010 16:46:15 -0400 Subject: Support docdir and abs_builddir Old versions of autoconf (before 2.60) did not include support for the docdir and abs_builddir variables. This patch emulates support for them. Fixes https://fedorahosted.org/sssd/ticket/422 --- common/dhash/configure.ac | 6 ++++++ src/configure.ac | 1 + 2 files changed, 7 insertions(+) diff --git a/common/dhash/configure.ac b/common/dhash/configure.ac index 1012afb..bf06cfc 100644 --- a/common/dhash/configure.ac +++ b/common/dhash/configure.ac @@ -21,5 +21,11 @@ AC_ARG_ENABLE([trace], [trace_level="0"]) AS_IF([test ["$trace_level" -gt "0"] -a ["$trace_level" -lt "8"] ],[AC_SUBST([TRACE_VAR],["-DTRACE_LEVEL=$trace_level"])]) +#Support old versions of autotools that don't provide docdir +AC_SUBST([docdir]) +if test x$docdir = x; then + AC_SUBST([docdir], ${datadir}/doc/AC_PACKAGE_NAME) +fi + AC_CONFIG_FILES([Makefile dhash.pc]) AC_OUTPUT diff --git a/src/configure.ac b/src/configure.ac index 40dac37..8344390 100644 --- a/src/configure.ac +++ b/src/configure.ac @@ -153,6 +153,7 @@ AM_CONDITIONAL([HAVE_CHECK], [test x$have_check != x]) abs_build_dir=`pwd` AC_DEFINE_UNQUOTED([ABS_BUILD_DIR], ["$abs_build_dir"], [Absolute path to the build directory]) +AC_SUBST([abs_builddir], $abs_build_dir) AC_CONFIG_FILES([Makefile examples/rwtab doxy.config po/Makefile.in]) AC_OUTPUT -- cgit