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 660702 - Missing configure check for gee
Missing configure check for gee
Status: RESOLVED FIXED
Product: gnome-contacts
Classification: Core
Component: general
3.2.x
Other Linux
: Normal normal
: ---
Assigned To: GNOME Contacts maintainer(s)
GNOME Contacts maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2011-10-02 16:15 UTC by Michael Biebl
Modified: 2011-10-20 15:02 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Add configure check for Gee (615 bytes, patch)
2011-10-02 16:18 UTC, Michael Biebl
committed Details | Review

Description Michael Biebl 2011-10-02 16:15:40 UTC
gnome-contacts uses Gee:
$ grep Gee src -R
src/contacts-contact-pane.vala:using Gee;
src/contacts-contact-pane.vala:  private void save_notes (Gee.HashMultiMap<Persona?,TextView> widgets) {
src/contacts-view.vala:using Gee;
src/contacts-types.vala:using Gee;
src/contacts-types.vala:    var list = new Gee.ArrayList<string> ();
src/contacts-utils.vala:using Gee;
src/contacts-utils.vala:      Gee.HashMap<string, Account> accounts) {
src/contacts-details-layout.vala:using Gee;
src/contacts-linking.vala:using Gee;
src/contacts-contact.vala:using Gee;
src/contacts-store.vala:using Gee;
src/contacts-store.vala:  Gee.ArrayList<Contact> contacts;
src/contacts-store.vala:  public Gee.HashMap<string, Account> calling_accounts;
src/contacts-store.vala:    contacts = new Gee.ArrayList<Contact>();
src/contacts-store.vala:    this.calling_accounts = new Gee.HashMap<string, Account> ();

but configure does not check for gee.

Attached patch fixes that.
Comment 1 Michael Biebl 2011-10-02 16:18:24 UTC
Created attachment 198026 [details] [review]
Add configure check for Gee
Comment 2 Alexander Larsson 2011-10-20 15:02:11 UTC
Attachment 198026 [details] pushed as f8bacdb - Add configure check for Gee