From: Michael Ow Date: Thu, 9 Jan 2014 19:18:40 +0000 (+0000) Subject: ICU-10617 Fix library suffix macro definition X-Git-Tag: milestone-59-0-1~2296 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6215a951834bd0c5c1fb7279cb19f4bcd2dc923f;p=icu ICU-10617 Fix library suffix macro definition X-SVN-Rev: 34845 --- diff --git a/icu4c/source/common/unicode/uconfig.h b/icu4c/source/common/unicode/uconfig.h index ef4ba94d9bd..0c6d86ee20b 100644 --- a/icu4c/source/common/unicode/uconfig.h +++ b/icu4c/source/common/unicode/uconfig.h @@ -1,6 +1,6 @@ /* ********************************************************************** -* Copyright (C) 2002-2013, International Business Machines +* Copyright (C) 2002-2014, International Business Machines * Corporation and others. All Rights Reserved. ********************************************************************** * file name: uconfig.h @@ -185,7 +185,8 @@ #ifdef U_LIB_SUFFIX_C_NAME_STRING /* Use the predefined value. */ #elif defined(U_LIB_SUFFIX_C_NAME) -# define U_LIB_SUFFIX_C_NAME_STRING #U_LIB_SUFFIX_C_NAME +# define CONVERT_TO_STRING(s) #s +# define U_LIB_SUFFIX_C_NAME_STRING CONVERT_TO_STRING(U_LIB_SUFFIX_C_NAME) #else # define U_LIB_SUFFIX_C_NAME_STRING "" #endif