GNOME Bugzilla – Bug 528971
planner 0.14.3 configure fails with evolution plugin.
Last modified: 2008-04-20 10:56:20 UTC
Planner 0.14.3 fails on configure with the evolution plugin. checking for EDS_BACKEND... configure: error: Package requirements ( libecal-1.2 >= 1.1.0 libedata-cal-1.2 >= 1.1.0 libedataserver-1.2 >= 1.1.0 evolution-plugin-2.2 >= 2.1.3 ) were not met: No package 'evolution-plugin-2.2' found evolution installs evolution-plugin.pc not evolution-plugin-2.2.pc When I make the below change it compiles correctly. diff -u -r planner-0.14.3/configure.in planner.mod/configure.in --- planner-0.14.3/configure.in 2008-04-12 07:49:23.000000000 -0500 +++ planner.mod/configure.in 2008-04-19 18:38:27.000000000 -0500 @@ -289,11 +289,11 @@ libecal-$EDS_PACKAGE >= $EDS_REQUIRED libedata-cal-$EDS_PACKAGE >= $EDS_REQUIRED libedataserver-$EDS_PACKAGE >= $EDS_REQUIRED - evolution-plugin-$EVOLUTION_PACKAGE >= $EVOLUTION_REQUIRED + evolution-plugin >= $EVOLUTION_REQUIRED ]) extensiondir=`$PKG_CONFIG --variable=extensiondir evolution-data-server-$EDS_PACKAGE` AC_SUBST(extensiondir) - plugindir=`$PKG_CONFIG --variable=plugindir evolution-plugin-$EVOLUTION_PACKAGE` + plugindir=`$PKG_CONFIG --variable=plugindir evolution-plugin` AC_SUBST(plugindir) use_eds_backend=yes else
It looks like you're entering uncharted territory; earlier versions also had this problem, so it seems nobody used it before. This problem has been fixed in the development version. The fix will be available in the next major software release. Thank you for your bug report.