From 30663ec6c95e76723e9db030d3b04ddac87293b6 Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Mon, 27 Jan 2003 17:54:15 +0000 Subject: [PATCH] * configure.in -- don't assume gtkhtml is avail from gnome-config when testing for zvt. Use the (already aquired) $GTKHTML_LIBS instead. Fixes Stan's problem from gc-devel. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@7887 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ configure.in | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b12fe549f9..8a2d1d4416 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2003-01-27 Derek Atkins + + * configure.in -- don't assume gtkhtml is avail from gnome-config + when testing for zvt. Use the (already aquired) $GTKHTML_LIBS + instead. Fixes Stan's problem from gc-devel. + 2003-01-27 Christian Stimming * src/import-export/hbci/glade/hbci.glade: Some more GUI work for diff --git a/configure.in b/configure.in index 1b93b4f56a..7e471d2da2 100644 --- a/configure.in +++ b/configure.in @@ -876,7 +876,7 @@ then # imlib, though it needs it so we'll just steal gtkhtml's which does. AC_CHECK_LIB(zvt, main, true, [AC_MSG_ERROR([libzvt development files not found. See config.log.])], - `$GNOME_CONFIG --libs zvt gtkhtml`) + `$GNOME_CONFIG --libs zvt` $GTKHTML_LIBS) #AC_CHECK_LIB(bonobo, main, true, # [AC_MSG_ERROR([libbonobo development files not found. See config.log.])