AC_DEFUN([GNOME_CHECK_GNOME], [ AC_REQUIRE([GNOME_X_CHECKS]) AC_CHECK_LIB(gnome, gnome_init, [GNOME_LIBS="-lgnome -lgnomeui"],[ AC_MSG_ERROR(Gnome libraries not found)],[ "$GTK_LIBS $x_libs"]) ]) AC_DEFUN([GNOME_INIT], [ AC_SUBST(GNOME_LIBS) AC_SUBST(GNOMEUI_LIBS) AC_SUBST(GTKXMHTML_LIBS) AC_SUBST(GNOMELIB_DIR) AC_SUBST(GNOMEINCLUDE_DIR) if test x$prefix = xNONE; then gnome_prefix=$ac_default_prefix/lib else gnome_prefix=$prefix/lib fi AC_ARG_WITH(gnome-includes, [--with-gnome-includes Specify location of GNOME headers],[ CFLAGS="$CFLAGS -I$withval" ]) AC_ARG_WITH(gnome-libs, [--with-gnome-libs Specify location of GNOME libs],[ LDFLAGS="$LDFLAGS -L$withval" gnome_prefix=$withval ]) AC_ARG_WITH(gnome, [--with-gnome Specify prefix for GNOME files],[ LDFLAGS="$LDFLAGS -L$withval/lib" CFLAGS="$CFLAGS -I$withval/include" gnome_prefix=$withval/lib ]) AC_MSG_CHECKING(for gnomeConf.sh file) if test -e $gnome_prefix/gnomeConf.sh; then AC_MSG_RESULT(found) echo "loading gnome configuration from $gnome_prefix/gnomeConf.sh" . $gnome_prefix/gnomeConf.sh else AC_MSG_ERROR(Could not find the gnomeConf.sh file that is generated by gnome-libs install) fi ])