diff options
author | bubulle <bubulle@alioth.debian.org> | 2010-09-06 20:54:34 +0000 |
---|---|---|
committer | bubulle <bubulle@alioth.debian.org> | 2010-09-06 20:54:34 +0000 |
commit | 53601faba8f69c3454ad07acaceeef9165cb3743 (patch) | |
tree | b31a4174a7f4d2650717c1902a6bc3f922e13117 /docs-xml/aclocal.m4 | |
parent | 1b77db997b6a2ce389356509415a6e5e540bcfe0 (diff) | |
download | samba-53601faba8f69c3454ad07acaceeef9165cb3743.tar.gz |
Merge 3.5.4 in upstream branch
git-svn-id: svn://svn.debian.org/svn/pkg-samba/branches/samba/upstream@3574 fc4039ab-9d04-0410-8cac-899223bdd6b0
Diffstat (limited to 'docs-xml/aclocal.m4')
-rw-r--r-- | docs-xml/aclocal.m4 | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/docs-xml/aclocal.m4 b/docs-xml/aclocal.m4 index 9ecbda5e6b..1252d2113f 100644 --- a/docs-xml/aclocal.m4 +++ b/docs-xml/aclocal.m4 @@ -36,29 +36,3 @@ AC_DEFUN(DOCS_TARGET_REQUIRE_PROGRAM, [ fi fi ]) - -dnl DOCS_TARGET_REQUIRE_DIR -dnl arg1: list of possible paths -dnl arg2: file in dir know to exist -dnl arg3: variable to store found path in -dnl arg4: target that requires it - -AC_DEFUN(DOCS_TARGET_REQUIRE_DIR, [ - AC_MSG_CHECKING([for $2]) - AC_SUBST($3) - for I in $1; - do - test -f "$I/$2" && $3="$I" - done - - if test x$$3 = x; then - if test x"$$4_REQUIRES" = x; then - $4_REQUIRES="$3" - else - $4_REQUIRES="$$4_REQUIRES $3" - fi - AC_MSG_RESULT([not found]) - else - AC_MSG_RESULT([found in $$3]) - fi -]) |