[patch] find libart2-config executable

Matthias Klose doko@cs.tu-berlin.de
Sun Jan 4 09:20:00 GMT 2004


Michael Koch writes:
> On Sat, Jan 03, 2004 at 12:09:50PM +0100, Matthias Klose wrote:
> > This is an "old" patch, somehow it vanished during some checkins ...
> > It's needed to find the correct libart-config executable on Debian
> > systems. It's still in libart.m4, but not in aclocal.m4. How was this
> > file regenerated, if not from libart.m4?
> > 
> > 	Matthias
> > 
> > --- libjava/aclocal.m4~	2004-01-02 12:28:12.000000000 +0100
> > +++ libjava/aclocal.m4	2004-01-03 11:59:31.000000000 +0100
> > @@ -960,7 +960,10 @@
> >       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)
> >    AC_MSG_CHECKING(for LIBART - version >= $min_libart_version)
> >    no_libart=""
> > 
> 
> Thx for finding this. This definitely should be fixed again.
> 
> I think the problem is that aclocal.m4 was generated by "aclocal"
> instead of "aclocal -I .". This mess will hopefully be gone with
> --enable-maintianer-mode when the atofriends update is done.

ok, checked in the following as an obvious bug fix:

2004-01-04  Matthias Klose  <doko@debian.org>

        * aclocal.m4: Rebuilt using "aclocal -I .".
        * configure: Rebuilt.



More information about the Java mailing list