Author: sharm Date: Sun Feb 17 18:55:38 2008 New Revision: 1859 URL: http://svn.gnome.org/viewvc/tomboy?rev=1859&view=rev
Log: * configure.in: Support gnome-sharp 2.19.x, in which gconf-sharp-peditors has been split out from gconf-sharp. Fixes bug #512512. Modified: trunk/ChangeLog trunk/configure.in Modified: trunk/configure.in ============================================================================== --- trunk/configure.in (original) +++ trunk/configure.in Sun Feb 17 18:55:38 2008 @@ -145,8 +145,13 @@ # Tomboy.exe needs Gtk# Gnome# GConf# # GTKSHARP2_MINIMUM_VERSION=$GTK20_MINIMUM_VERSION -PKG_CHECK_MODULES(TOMBOY, gtk-sharp-2.0 >= $GTKSHARP2_MINIMUM_VERSION gnome-sharp-2.0 gconf-sharp-2.0) -AC_SUBST(TOMBOY_LIBS) +if pkg-config --atleast-version=2.19.0 gconf-sharp-2.0; then + PKG_CHECK_MODULES(TOMBOY, gtk-sharp-2.0 >= $GTKSHARP2_MINIMUM_VERSION gnome-sharp-2.0 gconf-sharp-2.0 gconf-sharp-peditors-2.0) + AC_SUBST(TOMBOY_LIBS) +else + PKG_CHECK_MODULES(TOMBOY, gtk-sharp-2.0 >= $GTKSHARP2_MINIMUM_VERSION gnome-sharp-2.0 gconf-sharp-2.0) + AC_SUBST(TOMBOY_LIBS) +fi # # Evolution.dll needs Gmime# _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.
