From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Sat, 3 Mar 2012 16:40:22 +0000 (+0100) Subject: [PATCH 1/2] Add GNU as a valid platform X-Git-Url: http://git.tremily.us/?p=notmuch-archives.git;a=commitdiff_plain;h=66be833f143f56b7e1bcbe8570a7a9173e10f580 [PATCH 1/2] Add GNU as a valid platform --- diff --git a/cd/4c7754dcff0a904c292c83098bf1b94a58e628 b/cd/4c7754dcff0a904c292c83098bf1b94a58e628 new file mode 100644 index 000000000..1f0d6e744 --- /dev/null +++ b/cd/4c7754dcff0a904c292c83098bf1b94a58e628 @@ -0,0 +1,86 @@ +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 2A70D431FC4 + for ; Sat, 3 Mar 2012 08:40:41 -0800 (PST) +X-Virus-Scanned: Debian amavisd-new at olra.theworths.org +X-Spam-Flag: NO +X-Spam-Score: 0 +X-Spam-Level: +X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none] + 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 8HRQfjTKRlNb for ; + Sat, 3 Mar 2012 08:40:40 -0800 (PST) +Received: from mail.cryptobitch.de (cryptobitch.de [88.198.7.68]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by olra.theworths.org (Postfix) with ESMTPS id 9C9DC431FD9 + for ; Sat, 3 Mar 2012 08:40:37 -0800 (PST) +Received: from mail.jade-hamburg.de (unknown [85.183.11.228]) + (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) + (No client certificate requested) + by mail.cryptobitch.de (Postfix) with ESMTPSA id 6AD5441822D + for ; Sat, 3 Mar 2012 17:40:36 +0100 (CET) +Received: by mail.jade-hamburg.de (Postfix, from userid 401) + id CFAECDF2A6; Sat, 3 Mar 2012 17:40:35 +0100 (CET) +Received: from thinkbox.jade-hamburg.de (unknown [85.183.11.228]) + (using TLSv1 with cipher AES256-SHA (256/256 bits)) + (No client certificate requested) (Authenticated sender: teythoon) + by mail.jade-hamburg.de (Postfix) with ESMTPSA id BED5ADF2A1; + Sat, 3 Mar 2012 17:40:30 +0100 (CET) +Received: from teythoon by thinkbox.jade-hamburg.de with local (Exim 4.77) + (envelope-from ) + id 1S3s0T-0007X8-S5; Sat, 03 Mar 2012 17:40:29 +0100 +From: Justus Winter <4winter@informatik.uni-hamburg.de> +To: notmuch@notmuchmail.org +Subject: [PATCH 1/2] Add GNU as a valid platform +Date: Sat, 3 Mar 2012 17:40:22 +0100 +Message-Id: + <1330792823-6049-2-git-send-email-4winter@informatik.uni-hamburg.de> +X-Mailer: git-send-email 1.7.9.1 +In-Reply-To: + <1330792823-6049-1-git-send-email-4winter@informatik.uni-hamburg.de> +References: + <1330792823-6049-1-git-send-email-4winter@informatik.uni-hamburg.de> +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, 03 Mar 2012 16:40:41 -0000 + +Signed-off-by: Justus Winter <4winter@informatik.uni-hamburg.de> +--- + configure | 6 +++--- + 1 files changed, 3 insertions(+), 3 deletions(-) + +diff --git a/configure b/configure +index 8b85b9d..77203ed 100755 +--- a/configure ++++ b/configure +@@ -362,9 +362,9 @@ elif [ $uname = "SunOS" ] ; then + printf "Solaris.\n" + platform=SOLARIS + linker_resolves_library_dependencies=0 +-elif [ $uname = "Linux" ] ; then +- printf "Linux\n" +- platform=LINUX ++elif [ $uname = "Linux" ] || [ $uname = "GNU" ] ; then ++ printf "$uname\n" ++ platform="$uname" + linker_resolves_library_dependencies=1 + + printf "Checking for $libdir_expanded in ldconfig... " +-- +1.7.9.1 +