<feed xmlns='http://www.w3.org/2005/Atom'>
<title>notmuch/configure, branch 0.3</title>
<subtitle>thread-based email index, search, and tagging</subtitle>
<id>https://git.notmuchmail.org/git/notmuch/atom?h=0.3</id>
<link rel='self' href='https://git.notmuchmail.org/git/notmuch/atom?h=0.3'/>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/'/>
<updated>2010-04-26T14:18:21Z</updated>
<entry>
<title>configure: add ignored options for compatibility.</title>
<updated>2010-04-26T14:18:21Z</updated>
<author>
<name>Cédric Cabessa</name>
<email>ced@ryick.net</email>
</author>
<published>2010-04-24T23:33:10Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=42bda003a0df6c4b798ee1063a01c2ce0b2962e5'/>
<id>urn:sha1:42bda003a0df6c4b798ee1063a01c2ce0b2962e5</id>
<content type='text'>
gentoo's ebuild script expects 2 more options for configure:
  --host (same format as --build)
  --datadir
</content>
</entry>
<entry>
<title>configure: Print version of Xapian found during configure check.</title>
<updated>2010-04-21T21:18:56Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-04-21T21:18:56Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=2186cac8e7bbc07c6aba0e1fbea91ca789814ecd'/>
<id>urn:sha1:2186cac8e7bbc07c6aba0e1fbea91ca789814ecd</id>
<content type='text'>
This might be handy to know, (since there are important performance
considerations that depend on the Xapian version).
</content>
</entry>
<entry>
<title>configure: Generalize the GMime configure checks.</title>
<updated>2010-04-21T21:17:14Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-04-21T21:14:36Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=cbcc3454aee63c26864428039ea688c5eb3e6be0'/>
<id>urn:sha1:cbcc3454aee63c26864428039ea688c5eb3e6be0</id>
<content type='text'>
This way when GMime 2.8 comes out we can simply add it to the list
rather than adding an additional block of conditional code for it.
Also GMime 2.6 is now preferred over GMime 2.4.
</content>
</entry>
<entry>
<title>configure: Add support for GMime 2.6</title>
<updated>2010-04-21T21:17:14Z</updated>
<author>
<name>Adrien Bustany</name>
<email>abustany@gnome.org</email>
</author>
<published>2010-04-15T23:41:55Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=65b634145a1a114f63b284337de4f0c0f57924a9'/>
<id>urn:sha1:65b634145a1a114f63b284337de4f0c0f57924a9</id>
<content type='text'>
Notmuch compiles just fine with GMime 2.6, so accept it in the configure
script.
</content>
</entry>
<entry>
<title>configure: Fix syntax error (spaces in assignment).</title>
<updated>2010-04-16T02:45:11Z</updated>
<author>
<name>Gregor Hoffleit</name>
<email>gregor@hoffleit.de</email>
</author>
<published>2010-04-15T09:51:47Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=18433e4affa0124b5081fc57f652c832df9e9bb2'/>
<id>urn:sha1:18433e4affa0124b5081fc57f652c832df9e9bb2</id>
<content type='text'>
Before and after the assignment operator, no spaces are allowed.
I don't know if there are any /bin/sh which allow spaces, but at least
in bash, csh and zsh, the former code was no valid assigment.
</content>
</entry>
<entry>
<title>Makefile: Fix final linking of notmuch binary for OS X.</title>
<updated>2010-04-14T23:29:50Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-04-14T23:29:50Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=3d7af74ce512f4eed451ac86da3890397999d321'/>
<id>urn:sha1:3d7af74ce512f4eed451ac86da3890397999d321</id>
<content type='text'>
Apparently the OS X linker can't resolve symbols when linking a
program (notmuch) against a library (libnotmuch) when the library
depends on another library (libgmime) that the program doesn't depend
on directly.

For this case, we need to link the program directly against both
libraries, but we don't want to do this on Linux, where the linker can
do this on its own and the explicit, unneeded link would cause
problems.
</content>
</entry>
<entry>
<title>Add infrastructure for building shared library on OS X.</title>
<updated>2010-04-14T23:10:27Z</updated>
<author>
<name>Aaron Ecay</name>
<email>aaronecay@gmail.com</email>
</author>
<published>2010-04-11T23:44:53Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=8c8079a8b14fac5e8ca6b682e5c76e08a824f2e7'/>
<id>urn:sha1:8c8079a8b14fac5e8ca6b682e5c76e08a824f2e7</id>
<content type='text'>
This patch adds a configure check for OS X (actually Darwin),
and sets up the Makefiles to build a proper shared library on
that platform.

Signed-off-by: Aaron Ecay &lt;aaronecay@gmail.com&gt;
</content>
</entry>
<entry>
<title>Add simplistic reimplementation of strcasestr to compat library</title>
<updated>2010-04-14T18:34:12Z</updated>
<author>
<name>Dirk Hohndel</name>
<email>hohndel@x200.gr8dns.org</email>
</author>
<published>2010-04-13T16:47:48Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=d09154465aeae727e93a4abf54ff8f3bf0bdab76'/>
<id>urn:sha1:d09154465aeae727e93a4abf54ff8f3bf0bdab76</id>
<content type='text'>
While all systems that I have access to support strcasestr, it is
in fact not part of POSIX. So here's a fallback reimplementation
based on POSIX functions.

Signed-off-by: Dirk Hohndel &lt;hohndel@infradead.org&gt;

Tested-by: Tomas Carnecky &lt;tom@dbservice.com&gt; (on OpenSolaris snv_134)
</content>
</entry>
<entry>
<title>Fix the default value for --includedir.</title>
<updated>2010-04-07T23:00:48Z</updated>
<author>
<name>Mike Kelly</name>
<email>pioto@pioto.org</email>
</author>
<published>2010-04-07T15:48:31Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=37b8f5a8f2af32eabbb5ff1ba751bdfa2ee08082'/>
<id>urn:sha1:37b8f5a8f2af32eabbb5ff1ba751bdfa2ee08082</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Makefile: Install emacs code to site-lisp, not site-lisp/notmuch</title>
<updated>2010-04-07T17:09:35Z</updated>
<author>
<name>Carl Worth</name>
<email>cworth@cworth.org</email>
</author>
<published>2010-04-07T17:07:23Z</published>
<link rel='alternate' type='text/html' href='https://git.notmuchmail.org/git/notmuch/commit/?id=a7a961c510a87dc8af2842decabcbc9ecb7c1139'/>
<id>urn:sha1:a7a961c510a87dc8af2842decabcbc9ecb7c1139</id>
<content type='text'>
And just make the Debian packaging request site-lisp/notmuch like it
wants. Otherwise, the installed files won't appear on the load-path
so won't be found by emacs.
</content>
</entry>
</feed>
