On Tue, Nov 17, 2009 at 09:11:16PM +0100, Arvid Picciani wrote: > Daenyth Blank wrote: > > >I just saw a link on reddit this morning for "notmuch", a sup-inspired > >mail reader. Might be worth looking into > > > >http://keithp.com/blogs/notmuch/ > > looks very promising. thanks for sharing. couldnt compile it, but Make sure you have smbclient and community/xapian-core installed Patch the Makefile (you don't need to run ./configure) then make. --- Makefile 2009-11-17 21:36:47.000000000 +0100 +++ ../Makefile 2009-11-17 21:36:03.000000000 +0100 @@ -4,14 +4,14 @@ # Additional flags that we will append to whatever the user set. # These aren't intended for the user to manipulate. -extra_cflags = `pkg-config --cflags glib-2.0 gmime-2.4 talloc` +extra_cflags = `pkg-config --cflags glib-2.0 gmime-2.4` extra_cxxflags = `xapian-config --cxxflags` # Now smash together user's values with our extra values override CFLAGS += $(WARN_FLAGS) $(extra_cflags) override CXXFLAGS += $(WARN_FLAGS) $(extra_cflags) $(extra_cxxflags) -override LDFLAGS += `pkg-config --libs glib-2.0 gmime-2.4 talloc` \ +override LDFLAGS += -ltalloc `pkg-config --libs glib-2.0 gmime-2.4` \ `xapian-config --libs` # Include our local Makfile.local first so that its first target is # default