Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9034A9570 for ; Wed, 14 Dec 2011 05:55:54 +0000 (UTC) Received: (qmail 72913 invoked by uid 500); 14 Dec 2011 05:55:54 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 72781 invoked by uid 500); 14 Dec 2011 05:55:52 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 72770 invoked by uid 99); 14 Dec 2011 05:55:50 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 05:55:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.114] (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 05:55:42 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 9948556857; Wed, 14 Dec 2011 05:55:20 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: randall@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: git commit: Add ICU_CPPFLAGS to ICU_C|_CXXFLAGS Message-Id: <20111214055520.9948556857@tyr.zones.apache.org> Date: Wed, 14 Dec 2011 05:55:20 +0000 (UTC) Updated Branches: refs/heads/master 0658d982e -> 2d90a1249 Add ICU_CPPFLAGS to ICU_C|_CXXFLAGS Reported to fix homebrew builds under jenkins (cc daleharvey) Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/2d90a124 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/2d90a124 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/2d90a124 Branch: refs/heads/master Commit: 2d90a1249dea1d02d46266d52a0d269f0a33dbb0 Parents: 0658d98 Author: Randall Leeds Authored: Tue Dec 13 21:08:55 2011 -0800 Committer: Randall Leeds Committed: Tue Dec 13 21:53:08 2011 -0800 ---------------------------------------------------------------------- configure.ac | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/2d90a124/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 016cf41..e2f2265 100644 --- a/configure.ac +++ b/configure.ac @@ -331,6 +331,10 @@ AC_ARG_WITH([win32-icu-binaries], [AC_HELP_STRING([--with-win32-icu-binaries=PAT ], [ AC_CHECK_ICU([3.4.1]) ICU_BIN= + AC_MSG_CHECKING(ICU_CPPFLAGS) + ICU_CPPFLAGS=`$ICU_CONFIG --cppflags` + AC_MSG_RESULT($ICU_CPPFLAGS) + ICU_CFLAGS="$ICU_CPPFLAGS $ICU_CFLAGS" ]) AC_SUBST(ICU_CFLAGS)