[ghemical-devel] CVS branches (status)

Michael Banck mbanck@gmx.net
Thu, 30 May 2002 13:36:46 +0200


On Thu, May 30, 2002 at 02:21:51PM +0300, Tommi Hassinen wrote:
> For the new HEAD code, I made fixes to the configuration scripts, so that
> now the ./configure system should also work, except that the libglade
> includes and libs are missing; it's at target3/Makefile.OLD for example:
> 
> GNOMEFLAGS =	`libglade-config --cflags gnome`
> GNOMELIBS =	`libglade-config --libs gnome`
> 
> Ok, that's why the HEAD version is not working right now. Geoff and
> Michael, could you add this stuff if you look at the new version at some
> point?

A quick look at exult's configure.in turned up

AC_PATH_PROG(GLADECONFIG, libglade-config)
if test -n "$GLADECONFIG"; then
        have_libglade=yes
        LIBGLADE_LIBS=`libglade-config --libs`
        AC_SUBST(LIBGLADE_LIBS)
        LIBGLADE_INCLUDES=`libglade-config --cflags`
        AC_SUBST(LIBGLADE_INCLUDES)
else
        have_libglade=no
fi

This should be roughly what's needed, no?

Michael