2004-10-21 Mike Kestner <mkestner@ximian.com>
* configure.in : guard against broken installs where enable_gnome fails but enable_gnomedb succeeds. [Fixes #67986] svn path=/trunk/gtk-sharp/; revision=35213
This commit is contained in:
parent
a5ee1fee3b
commit
6d03cee2fb
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2004-10-21 Mike Kestner <mkestner@ximian.com>
|
||||
|
||||
* configure.in : guard against broken installs where enable_gnome
|
||||
fails but enable_gnomedb succeeds. [Fixes #67986]
|
||||
|
||||
2004-10-20 Dan Winship <danw@novell.com>
|
||||
|
||||
* gdk/Window.custom: add a new constructor that takes a
|
||||
|
|
|
@ -142,10 +142,13 @@ AC_SUBST(GLADE_LIBS)
|
|||
|
||||
LIBGDA_REQUIRED_VERSION=1.0.0
|
||||
PKG_CHECK_MODULES(LIBGDA_DEPENDENCIES, libgda >= $LIBGDA_REQUIRED_VERSION, enable_gda=yes, enable_gda=no)
|
||||
|
||||
enable_gnomedb=no
|
||||
if test "x$enable_gnome" = "xyes"; then
|
||||
if test "x$enable_gda" = "xyes"; then
|
||||
PKG_CHECK_MODULES(LIBGNOMEDB_DEPENDENCIES, libgnomedb >= $LIBGDA_REQUIRED_VERSION, enable_gnomedb=yes, enable_gnomedb=no)
|
||||
fi
|
||||
fi
|
||||
|
||||
RSVG_REQUIRED_VERSION=2.0.1
|
||||
PKG_CHECK_MODULES(RSVG_DEPENDENCIES, librsvg-2.0 >= $RSVG_REQUIRED_VERSION, enable_rsvg=yes, enable_rsvg=no)
|
||||
|
|
Loading…
Reference in a new issue