Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 63C584196F0 for ; Sat, 17 Apr 2010 09:25:19 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.5 X-Spam-Level: X-Spam-Status: No, score=-0.5 tagged_above=-999 required=5 tests=[BAYES_05=-0.5] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id FeOKJPK1Phdh for ; Sat, 17 Apr 2010 09:25:17 -0700 (PDT) Received: from mail.mymadcat.com (mymadcat.com [213.251.163.154]) by olra.theworths.org (Postfix) with ESMTP id C1F3E431FC1 for ; Sat, 17 Apr 2010 09:25:17 -0700 (PDT) Received: by mail.mymadcat.com (Postfix, from userid 504) id B66343DB7B; Sat, 17 Apr 2010 18:25:16 +0200 (CEST) Received: from mail.mymadcat.com (localhost.localdomain [127.0.0.1]) by mail.mymadcat.com (Postfix) with ESMTPSA id F1B563DB76; Sat, 17 Apr 2010 18:25:15 +0200 (CEST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Date: Sat, 17 Apr 2010 18:25:15 +0200 From: Adrien Bustany To: Adrien Bustany Subject: Re: [PATCH] configure: Add support for GMime 2.6 In-Reply-To: <20100415235259.76C4A3DB75@mail.mymadcat.com> References: <20100415235259.76C4A3DB75@mail.mymadcat.com> Message-ID: X-Sender: madcat@mymadcat.com User-Agent: RoundCube Webmail/0.3-beta Cc: notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2010 16:25:19 -0000 Just sending the patch again for the 0.3 merge window... Cheers Adrien On Thu, 15 Apr 2010 19:41:55 -0400, Adrien Bustany wrote: > Notmuch compiles just fine with GMime 2.6, so accept it in the configure > script. > --- > configure | 5 +++++ > 1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/configure b/configure > index eebe075..d4d462f 100755 > --- a/configure > +++ b/configure > @@ -188,6 +188,11 @@ if pkg-config --modversion gmime-2.4 > /dev/null > 2>&1; then > have_gmime=1 > gmime_cflags=$(pkg-config --cflags gmime-2.4) > gmime_ldflags=$(pkg-config --libs gmime-2.4) > +elif pkg-config --modversion gmime-2.6 > /dev/null 2>&1; then > + printf "Yes.\n" > + have_gmime=1 > + gmime_cflags=$(pkg-config --cflags gmime-2.6) > + gmime_ldflags=$(pkg-config --libs gmime-2.6) > else > printf "No.\n" > have_gmime=0