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 226AC431FC0 for ; Sun, 22 Nov 2009 09:21:01 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org 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 8hQCGYSl0zQr for ; Sun, 22 Nov 2009 09:21:00 -0800 (PST) Received: from mail-bw0-f224.google.com (mail-bw0-f224.google.com [209.85.218.224]) by olra.theworths.org (Postfix) with ESMTP id 46FE7431FAE for ; Sun, 22 Nov 2009 09:21:00 -0800 (PST) Received: by bwz24 with SMTP id 24so3415853bwz.30 for ; Sun, 22 Nov 2009 09:20:59 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:to:subject :in-reply-to:references:date:message-id:mime-version:content-type; bh=Ajw5OlxfAtK48TPvujIKeF84i64TlaOyQAYP7z/Ub7Y=; b=vXISagHjBI8paBMjxVQAhRnpaCVHfZPzZZwGSrdYSpujMXYeH4gBru1A1bdzSs2iFB nx+jM2j1KL0qXhkqB1A35djiqtI3kofPWRdNYN0CpHApGRVYq0Wtm6z1HoMirAPJcGn0 V2mkEl5BpCWqsB4+uk0dzrVNSNdlin+SKSRc4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:in-reply-to:references:date:message-id :mime-version:content-type; b=b3AosuyHqbim7Youn+o6pstcIvxMSS4687E9aT5i1nuuUSjzw6jsIEhnj4NX8vLsL1 7T1RVOA1QKaVhRnisfh6c6i7VIKXCvqWI8NyeJQsi7VJ3UpWoll8tkedQfv09FrvFFU2 FMR3/RH/xmLTRwNBYSUrk7eQRscGBkGH/CafU= Received: by 10.204.49.82 with SMTP id u18mr3824588bkf.47.1258910459236; Sun, 22 Nov 2009 09:20:59 -0800 (PST) Received: from kunyang (vawpc43.ethz.ch [129.132.59.11]) by mx.google.com with ESMTPS id 12sm4547041fks.9.2009.11.22.09.20.57 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 22 Nov 2009 09:20:57 -0800 (PST) Sender: Jed Brown From: Jed Brown To: Jeffrey Ollie , Bart Trojanowski , Not Much Mail In-Reply-To: <935ead450911220800r47284335n301a2b2432638c72@mail.gmail.com> References: <1258897630-22282-1-git-send-email-jeff@ocjtech.us> <20091122141501.GH17268@jukie.net> <935ead450911220800r47284335n301a2b2432638c72@mail.gmail.com> Date: Sun, 22 Nov 2009 18:21:28 +0100 Message-ID: <87r5rqmq5j.fsf@kunyang.i-did-not-set--mail-host-address--so-tickle-me> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [notmuch] [PATCH] Add SCons build files. X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.12 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: Sun, 22 Nov 2009 17:21:01 -0000 On Sun, 22 Nov 2009 10:00:26 -0600, Jeffrey Ollie wrote: > Yes, I'm sure that make is widely available, but as notmuch gets used > on a wider variety of systems some sort of configuration system will > become necessary. If I can prevent another project from going down > the autoconf/automake path I'll be happy. I started creating CMake > build files but I don't know CMake well enough to come up with a > working build. I can do a CMake build if that's desirable. While I prefer it to SCons, particularly when config/build times are an issue and you want to have several active build trees, it is a significantly heavier dependency. With SCons, you can dump scons-local (a pure Python script) into the source tree and then users only need Python. There are lots of other lightweight build tools. Jed