Commit 27a6ded9 by Matthias Klose Committed by Matthias Klose

libart.m4: check for libart-config binary under the name libart2-config as well.

2003-08-04  Matthias Klose  <doko@debian.org>

        * libart.m4: check for libart-config binary
          under the name libart2-config as well.
        * configure, aclocal.m4: regenerated.

From-SVN: r70150
parent b2734c68
2003-08-04 Matthias Klose <doko@debian.org>
* libart.m4: check for libart-config binary
under the name libart2-config as well.
* configure, aclocal.m4: regenerated.
2003-08-02 Michael Koch <konqueror@gmx.de> 2003-08-02 Michael Koch <konqueror@gmx.de>
* java/nio/ByteBufferImpl.java * java/nio/ByteBufferImpl.java
......
...@@ -32,7 +32,10 @@ AC_ARG_ENABLE(libarttest, [ --disable-libarttest Do not try to compile an ...@@ -32,7 +32,10 @@ AC_ARG_ENABLE(libarttest, [ --disable-libarttest Do not try to compile an
fi fi
fi fi
AC_PATH_PROG(LIBART_CONFIG, libart-config, no) AC_PATH_PROG(LIBART_CONFIG, libart2-config, no)
if test "$LIBART_CONFIG" = "no" ; then
AC_PATH_PROG(LIBART_CONFIG, libart-config, no)
fi
min_libart_version=ifelse([$1], ,0.2.5,$1) min_libart_version=ifelse([$1], ,0.2.5,$1)
AC_MSG_CHECKING(for LIBART - version >= $min_libart_version) AC_MSG_CHECKING(for LIBART - version >= $min_libart_version)
no_libart="" no_libart=""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment