Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 5 Dec 2001 18:41:52 -0500 (EST)
From:      Joe Marcus Clarke <marcus@marcuscom.com>
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   ports/32541: [FIX] evolution addressbook does not work
Message-ID:  <200112052341.fB5Nfq890980@shumai.marcuscom.com>

next in thread | raw e-mail | index | archive | help

>Number:         32541
>Category:       ports
>Synopsis:       [FIX] evolution addressbook does not work
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed Dec 05 15:50:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     Joe Marcus Clarke
>Release:        FreeBSD 4.4-STABLE i386
>Organization:
MarcusCom, Inc.
>Environment:
System: FreeBSD shumai.marcuscom.com 4.4-STABLE FreeBSD 4.4-STABLE #0: Sat Dec 1 19:32:11 EST 2001 marcus@shumai.marcuscom.com:/usr/obj/usr/src/sys/SHUMAI i386


	
>Description:
	The Contacts section of evolution does not work.  You cannot add new
contacts to the address book as all the buttons are greyed out.
>How-To-Repeat:
	Just launch evolution, and click on the Contacts button.
>Fix:
The problem is that evolution requires db3 3.1.17.  FreeBSD currently installs
3.2.9, however, 3.3.11 should also work.  Apply the attached patches, and 
recompile evolution to enable the Contacts feature.


--- e-util/e-dbhash.c.orig	Wed Dec  5 18:32:15 2001
+++ e-util/e-dbhash.c	Wed Dec  5 18:35:40 2001
@@ -35,14 +35,14 @@
 
 	int major, minor, patch;
 
-	db_version (&major, &minor, &patch);
+	/*db_version (&major, &minor, &patch);
 
 	if (major != 3 ||
 	    minor != 1 ||
 	    patch != 17) {
 		g_warning ("Wrong version of libdb.");
 		return NULL;
-	}
+	}*/
 
 	/* Attempt to open the database */
 	rv = db_create (&db, NULL, 0);


--- addressbok/backend/pas/pas-backend-file.c.orig	Wed Dec  5 18:34:24 2001
+++ addressbook/backend/pas/pas-backend-file.c	Wed Dec  5 18:34:41 2001
@@ -1242,14 +1242,14 @@
 
 	g_assert (bf->priv->loaded == FALSE);
 
-	db_version (&major, &minor, &patch);
+	/*db_version (&major, &minor, &patch);
 
 	if (major != 3 ||
 	    minor != 1 ||
 	    patch != 17) {
 		g_warning ("Wrong version of libdb.");
 		return FALSE;
-	}
+	}*/
 
 	filename = pas_backend_file_extract_path_from_uri (uri);
 
>Release-Note:
>Audit-Trail:
>Unformatted:

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200112052341.fB5Nfq890980>