[PATCH v2] configure: use cc/c++ instead of gcc/g++
authorFraser Tweedale <frase@frase.id.au>
Thu, 22 May 2014 10:10:06 +0000 (20:10 +1000)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:02:56 +0000 (10:02 -0800)
2f/37c4379729ffd43d3250e1e9b623c21394dc17 [new file with mode: 0644]

diff --git a/2f/37c4379729ffd43d3250e1e9b623c21394dc17 b/2f/37c4379729ffd43d3250e1e9b623c21394dc17
new file mode 100644 (file)
index 0000000..2a56864
--- /dev/null
@@ -0,0 +1,85 @@
+Return-Path: <fraser@bacardi.hollandpark.frase.id.au>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by olra.theworths.org (Postfix) with ESMTP id F0516431FBC\r
+       for <notmuch@notmuchmail.org>; Thu, 22 May 2014 03:11:17 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id ZUzy7sfS+k10 for <notmuch@notmuchmail.org>;\r
+       Thu, 22 May 2014 03:11:13 -0700 (PDT)\r
+Received: from captainmorgan.hollandpark.frase.id.au\r
+       (110-174-235-130.static.tpgi.com.au [110.174.235.130])\r
+       (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id AC2A9431FAE\r
+       for <notmuch@notmuchmail.org>; Thu, 22 May 2014 03:11:12 -0700 (PDT)\r
+Received: from bacardi.hollandpark.frase.id.au\r
+       (bacardi.hollandpark.frase.id.au [192.168.0.100])\r
+       by captainmorgan.hollandpark.frase.id.au (8.14.5/8.14.5) with ESMTP id\r
+       s4MAB2DS032437; Thu, 22 May 2014 20:11:02 +1000 (EST)\r
+       (envelope-from fraser@bacardi.hollandpark.frase.id.au)\r
+Received: from bacardi.hollandpark.frase.id.au (localhost [127.0.0.1])\r
+       by bacardi.hollandpark.frase.id.au (8.14.7/8.14.7) with ESMTP id\r
+       s4MAB2nC098702\r
+       (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256\r
+       verify=NO); Thu, 22 May 2014 20:11:02 +1000 (EST)\r
+       (envelope-from fraser@bacardi.hollandpark.frase.id.au)\r
+Received: (from fraser@localhost)\r
+       by bacardi.hollandpark.frase.id.au (8.14.7/8.14.7/Submit) id\r
+       s4MAB2Fb098701; Thu, 22 May 2014 20:11:02 +1000 (EST)\r
+       (envelope-from fraser)\r
+From: Fraser Tweedale <frase@frase.id.au>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH v2] configure: use cc/c++ instead of gcc/g++\r
+Date: Thu, 22 May 2014 20:10:06 +1000\r
+Message-Id: <1400753406-98646-1-git-send-email-frase@frase.id.au>\r
+X-Mailer: git-send-email 1.9.2\r
+In-Reply-To: <537d73afe956_1bf76cb3085c@nysa.notmuch>\r
+References: <537d73afe956_1bf76cb3085c@nysa.notmuch>\r
+Cc: Fraser Tweedale <frase@frase.id.au>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Thu, 22 May 2014 10:11:18 -0000\r
+\r
+Some systems (e.g. FreeBSD 10) do not ship with the GNU Compiler\r
+Collection.  Use generic cc/c++ instead of gcc/g++ (unless the\r
+CC/CXX environment variables are used).\r
+---\r
+ configure | 4 ++--\r
+ 1 file changed, 2 insertions(+), 2 deletions(-)\r
+\r
+diff --git a/configure b/configure\r
+index 9bde2eb..7d015c6 100755\r
+--- a/configure\r
++++ b/configure\r
+@@ -43,8 +43,8 @@ fi\r
\r
+ # Set several defaults (optionally specified by the user in\r
+ # environment variables)\r
+-CC=${CC:-gcc}\r
+-CXX=${CXX:-g++}\r
++CC=${CC:-cc}\r
++CXX=${CXX:-c++}\r
+ CFLAGS=${CFLAGS:--O2}\r
+ CPPFLAGS=${CPPFLAGS:-}\r
+ CXXFLAGS=${CXXFLAGS:-\$(CFLAGS)}\r
+-- \r
+1.9.2\r
+\r