From 18b2a302428b79052ffb083b98fbce7c67cd2644 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Wed, 4 Sep 2013 23:00:06 +0000 Subject: [PATCH] ICU-10331 use --std=c++03 by default for MinGW X-SVN-Rev: 34193 --- icu4c/source/runConfigureICU | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/icu4c/source/runConfigureICU b/icu4c/source/runConfigureICU index 6783b384df6..2a4c425eb52 100755 --- a/icu4c/source/runConfigureICU +++ b/icu4c/source/runConfigureICU @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 1999-2012, International Business Machines Corporation and +# Copyright (c) 1999-2013, International Business Machines Corporation and # others. All Rights Reserved. # runConfigureICU: This script will run the "configure" script for the appropriate platform @@ -301,6 +301,8 @@ case $platform in THE_COMP="the GNU C++" RELEASE_CFLAGS='-O3' RELEASE_CXXFLAGS='-O3' + CXXFLAGS="--std=c++03" + export CXXFLAGS ;; *BSD) THE_OS="BSD"