mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Apply Aaron Crane's function pointer bandaid to the db4 open calls.

+2 -3
+2 -3
hcache.c
··· 805 805 return NULL; 806 806 } 807 807 808 - ret = h->env->open(h->env, NULL, DB_INIT_MPOOL | DB_CREATE | DB_PRIVATE, 808 + ret = (*h->env->open)(h->env, NULL, DB_INIT_MPOOL | DB_CREATE | DB_PRIVATE, 809 809 0600); 810 810 if (!ret) 811 811 { ··· 826 826 h->db->set_pagesize(h->db, pagesize); 827 827 } 828 828 829 - ret = h->db->open(h->db, NULL, path, folder, DB_BTREE, createflags, 0600); 829 + ret = (*h->db->open)(h->db, NULL, path, folder, DB_BTREE, createflags, 0600); 830 830 if (ret) 831 831 { 832 832 h->db->close(h->db, 0); ··· 844 844 mutt_hcache_close(void *db) 845 845 { 846 846 struct header_cache *h = db; 847 - int ret; 848 847 849 848 if (!h) 850 849 return;