From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by arlo.cworth.org (Postfix) with ESMTP id B60DB6DE11D4 for ; Tue, 22 Aug 2017 15:44:26 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at cworth.org X-Spam-Flag: NO X-Spam-Score: -0.063 X-Spam-Level: X-Spam-Status: No, score=-0.063 tagged_above=-999 required=5 tests=[AWL=-0.102, FREEMAIL_FORGED_FROMDOMAIN=0.249, FREEMAIL_FROM=0.001, HEADER_FROM_DIFFERENT_DOMAINS=0.001, RCVD_IN_DNSWL_NONE=-0.0001, RCVD_IN_MSPIKE_H2=-0.211, SPF_PASS=-0.001] autolearn=disabled Received: from arlo.cworth.org ([127.0.0.1]) by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 6W2CzOTvoHHc for ; Tue, 22 Aug 2017 15:44:24 -0700 (PDT) Received: from mail-wr0-f169.google.com (mail-wr0-f169.google.com [209.85.128.169]) by arlo.cworth.org (Postfix) with ESMTPS id 4A8316DE1321 for ; Tue, 22 Aug 2017 15:44:17 -0700 (PDT) Received: by mail-wr0-f169.google.com with SMTP id z91so260843wrc.4 for ; Tue, 22 Aug 2017 15:44:17 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=kNSOa5IgX3vIagH7ZybubolJkKSRAjR1Y+z4+muMeR4=; b=S5qkKmmvHVcrkz0xz9uhlI17bB7zWU0I5CI6oKjJ+SRJmjCEiOI1hIp3+KyfsNiEiI ZISnOd1rkOyhb1o4bs7vDpcFwGytG20mBYK/yaTbeMvLlcJE7q1VVof6+eZ81TRBUE2x eQVXhhDVv1UJV8zYy7+0sNg3NaxuYYJSf8SeBtpdjPo36i6FLl7ob9TvLYqkJXDdlNF3 xgjFPEvwdbOvOArYlsjjxLYFVq2syyw8VNmAobzgGFmK1HfoKIE9GZ8+i7UqkzE4k2LP yBbhPLKnfj4N4W6YoaDJpI3zfk/afQOTQWJUhAhkkH9QCkNHaBDkqJGjA6neTb/cHSLC Jsag== X-Gm-Message-State: AHYfb5h3bEDZMMAQ5qB2lbVP5kPQRIthRQFWO1S234xh2YJDmBZNX3zS XreQnswlQtjdpZ0uwZY= X-Received: by 10.223.173.182 with SMTP id w51mr380021wrc.113.1503441855762; Tue, 22 Aug 2017 15:44:15 -0700 (PDT) Received: from home.thecybershadow.net ([89.28.117.31]) by smtp.gmail.com with ESMTPSA id e137sm491385wma.29.2017.08.22.15.44.14 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 22 Aug 2017 15:44:14 -0700 (PDT) From: Vladimir Panteleev To: notmuch@notmuchmail.org Cc: Vladimir Panteleev Subject: [PATCH 5/8] configure: Detect Cygwin, and set PLATFORM accordingly Date: Tue, 22 Aug 2017 22:43:36 +0000 Message-Id: <20170822224339.22601-6-notmuch@thecybershadow.net> X-Mailer: git-send-email 2.13.3 In-Reply-To: <20170822224339.22601-1-notmuch@thecybershadow.net> References: <20170822224339.22601-1-notmuch@thecybershadow.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.23 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: Tue, 22 Aug 2017 22:44:27 -0000 From: Vladimir Panteleev --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index 17ac67bb..f7a54dec 100755 --- a/configure +++ b/configure @@ -699,6 +699,11 @@ case "$uname" in printf "Yes\n" fi ;; + CYGWIN_NT-*) + printf "Cygwin.\n" + platform=CYGWIN + linker_resolves_library_dependencies=0 + ;; *) printf "Unknown.\n" platform="$uname" -- 2.13.3