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 9B1FF431FC0 for ; Fri, 25 May 2012 06:43:47 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.7 X-Spam-Level: X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled 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 jHsJa0YSTJAW for ; Fri, 25 May 2012 06:43:46 -0700 (PDT) Received: from mail-vb0-f53.google.com (mail-vb0-f53.google.com [209.85.212.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 9BCAF431FD0 for ; Fri, 25 May 2012 06:43:43 -0700 (PDT) Received: by vbbfc26 with SMTP id fc26so989685vbb.26 for ; Fri, 25 May 2012 06:43:42 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=ql4LnvnmanvASXhf4i0Pom3ozdJX4NKVglbf4b3zNLs=; b=oii495VCndi5oy5Fc5kDRgqf/RNVz/M0Z81uyjipiUhKvbE8VBeM7bizr6oV2QkgqB lzy4UrEHQETb9Zi1PmfKyZDz4PzCd45u9tm64lHeGQvSuQRjnX0yWEQ2n85f2mCUdopk XKjubP9eaZ63A5HLo3ld6k1ovSykHuZtZc78aBY1iJqf7WpRSyXO2znA+925N4l2ADmT dgH1J8PqM5kz/CnATABOmyGwVTrq7Mjpg55sBQvEgnq7ExCgl/paoT9pdVZ7uUhsro4i nKQG2yVDGPYjiJk2oOJO5wpD34XkTcf5t+dWANI69O3k9XT34JqKBJnPKQHBCGU6izMI SgjA== Received: by 10.52.21.174 with SMTP id w14mr3168416vde.24.1337953422807; Fri, 25 May 2012 06:43:42 -0700 (PDT) Received: from nas.home.pioto.org (pool-71-182-155-97.pitbpa.fios.verizon.net. [71.182.155.97]) by mx.google.com with ESMTPS id by2sm4221265vdb.22.2012.05.25.06.43.42 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 May 2012 06:43:42 -0700 (PDT) Received: by nas.home.pioto.org (Postfix, from userid 1001) id AC099287C9; Fri, 25 May 2012 09:43:41 -0400 (EDT) From: Mike Kelly To: notmuch@notmuchmail.org Subject: [PATCH 01/10] Add support for FreeBSD. Date: Fri, 25 May 2012 09:43:22 -0400 Message-Id: <1337953411-21000-2-git-send-email-pioto@pioto.org> X-Mailer: git-send-email 1.7.10.2 In-Reply-To: <1337953411-21000-1-git-send-email-pioto@pioto.org> References: <1337953411-21000-1-git-send-email-pioto@pioto.org> X-Gm-Message-State: ALoCoQkpo7nwpcAa/1S6B5exV/DnT7h6ptdh51P7adPvfZbZ7p0VvoWEK/69H7FFCwY1qrGRx3Vf 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: Fri, 25 May 2012 13:43:48 -0000 --- configure | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 71981b7..6c45880 100755 --- a/configure +++ b/configure @@ -356,6 +356,10 @@ elif [ $uname = "SunOS" ] ; then printf "Solaris.\n" platform=SOLARIS linker_resolves_library_dependencies=0 +elif [ $uname = "FreeBSD" ] ; then + printf "FreeBSD.\n" + platform=FREEBSD + linker_resolves_library_dependencies=0 elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then printf "$uname\n" platform="$uname" @@ -645,7 +649,7 @@ HAVE_GETLINE = ${have_getline} # build its own version) HAVE_STRCASESTR = ${have_strcasestr} -# Supported platforms (so far) are: LINUX, MACOSX, SOLARIS +# Supported platforms (so far) are: LINUX, MACOSX, SOLARIS, FREEBSD PLATFORM = ${platform} # Whether the linker will automatically resolve the dependency of one -- 1.7.10.2