Document which pieces of glib we're still using.

Looks like we can copy in a hash-table implementation, (from cairo,
say), and then a few _ascii_ functions from glib, (we'll need to
switch a few current uses if things like isspace, etc. to locale-
independent versions as well). So not too hard to free ourselves
of glib for now, (until we add GMime back in later, of course).
This commit is contained in:
Carl Worth 2009-10-19 13:40:56 -07:00
parent fa562fa22b
commit c5eea2b77e
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
#include <xapian.h>
#include <glib.h>
#include <glib.h> /* g_strdup_printf, g_free, GHashTable */
using namespace std;

View file

@ -22,7 +22,7 @@
#include "notmuch-private.h"
#include <glib.h>
#include <glib.h> /* GHashTable */
struct _notmuch_message {
/* File objects */

View file

@ -30,7 +30,7 @@
#include <dirent.h>
#include <errno.h>
#include <glib.h>
#include <glib.h> /* GIOChannel */
#define ARRAY_SIZE(arr) (sizeof (arr) / sizeof (arr[0]))