config/lx_docdir_suffix.m4
author hegyi
Thu, 16 Jun 2005 18:58:15 +0000
changeset 1500 a222eb109e52
permissions -rw-r--r--
First of all: revision 1981 is mine, what is important me because I was born in 1981. But what is new in my revision? If you drag nodes with left button, edge-breakpoints do not change location. If you drag nodes by right button, they do, they take up their base situation at the halfpoint of the edge.
ladanyi@1487
     1
AC_DEFUN([LX_DOCDIR_SUFFIX],
ladanyi@1487
     2
[
ladanyi@1487
     3
  AC_ARG_WITH([docsuffix],
ladanyi@1487
     4
AS_HELP_STRING([--with-docsuffix=DOCSUFFIX], [install the documentation under datadir/doc/DOCSUFFIX]),
ladanyi@1487
     5
              [], [with_docsuffix=no])
ladanyi@1487
     6
ladanyi@1487
     7
  AC_MSG_CHECKING([for the value of DOCSUFFIX])
ladanyi@1487
     8
  if test x"$with_docsuffix" != x"no"; then
ladanyi@1487
     9
    DOCSUFFIX="$with_docsuffix"
ladanyi@1487
    10
  else
ladanyi@1487
    11
    DOCSUFFIX="$PACKAGE_TARNAME-$PACKAGE_VERSION"
ladanyi@1487
    12
  fi
ladanyi@1487
    13
  AC_MSG_RESULT([$DOCSUFFIX])
ladanyi@1487
    14
ladanyi@1487
    15
  AC_SUBST(DOCSUFFIX)
ladanyi@1487
    16
])