summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-04-08 16:46:15 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-04-12 09:22:34 -0400
commitf41bb18c51c8d5c3e19e27773d9d0473a341f796 (patch)
treeafee5c43bee0b9316db154fe2e0762059b38eead
parented0bb1777181db1243a7b4f5c71350e7ef0193f8 (diff)
downloadsssd_unused-f41bb18c51c8d5c3e19e27773d9d0473a341f796.tar.gz
sssd_unused-f41bb18c51c8d5c3e19e27773d9d0473a341f796.tar.xz
sssd_unused-f41bb18c51c8d5c3e19e27773d9d0473a341f796.zip
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
-rw-r--r--common/dhash/configure.ac6
-rw-r--r--src/configure.ac1
2 files changed, 7 insertions, 0 deletions
diff --git a/common/dhash/configure.ac b/common/dhash/configure.ac
index 1012afbb..bf06cfc5 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 40dac37c..83443905 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