After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 528971 - planner 0.14.3 configure fails with evolution plugin.
planner 0.14.3 configure fails with evolution plugin.
Status: RESOLVED FIXED
Product: planner
Classification: Other
Component: General
0.14.x
Other Linux
: Normal normal
: ---
Assigned To: planner-maint
planner-maint
Depends on:
Blocks:
 
 
Reported: 2008-04-19 23:52 UTC by Robin Cook
Modified: 2008-04-20 10:56 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Robin Cook 2008-04-19 23:52:54 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
Comment 1 Maurice van der Pot 2008-04-20 10:56:20 UTC
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.