From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1521) id F2F813858D35; Thu, 20 Jan 2022 01:48:13 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F2F813858D35 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Michael Frysinger To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] newlib: clean up autoheader templates X-Act-Checkin: newlib-cygwin X-Git-Author: Mike Frysinger X-Git-Refname: refs/heads/master X-Git-Oldrev: ff5be4ab83ecf7e19f29add4676f38551e401ff9 X-Git-Newrev: 810c5e597974d09fe2d27f3bddf90dd52d20bb1c Message-Id: <20220120014813.F2F813858D35@sourceware.org> Date: Thu, 20 Jan 2022 01:48:13 +0000 (GMT) X-BeenThere: newlib-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib GIT logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jan 2022 01:48:14 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D810c5e59797= 4d09fe2d27f3bddf90dd52d20bb1c commit 810c5e597974d09fe2d27f3bddf90dd52d20bb1c Author: Mike Frysinger Date: Wed Jan 12 23:05:16 2022 -0500 newlib: clean up autoheader templates =20 Sync these back from newlib.hin to configure.ac, and touchup some of the forms to be consistent (like being full sentences). Also use the AC_DEFINE-vs-AC_DEFINE_UNQUOTED macros correctly. This will make it easier to re-enable autoheader for managing newlib.hin. Diff: --- newlib/configure | 147 ++++++++++++++++++++----------------------------= ---- newlib/configure.ac | 76 +++++++++++++-------------- newlib/newlib.hin | 65 +++++++++++------------ 3 files changed, 127 insertions(+), 161 deletions(-) diff --git a/newlib/configure b/newlib/configure index 8190f9f2e..624ec89af 100755 --- a/newlib/configure +++ b/newlib/configure @@ -12503,6 +12503,7 @@ fi =20 =20 if test "${newlib_elix_level}" -gt "0"; then + cat >>confdefs.h <<_ACEOF #define _ELIX_LEVEL ${newlib_elix_level} _ACEOF @@ -12510,83 +12511,65 @@ _ACEOF fi =20 if test "${newlib_reent_check_verify}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _REENT_CHECK_VERIFY 1 -_ACEOF + +$as_echo "#define _REENT_CHECK_VERIFY 1" >>confdefs.h =20 fi =20 if test "${newlib_io_c99_formats}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_IO_C99_FORMATS 1 -_ACEOF + +$as_echo "#define _WANT_IO_C99_FORMATS 1" >>confdefs.h =20 fi =20 if test "${newlib_register_fini}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_REGISTER_FINI 1 -_ACEOF + +$as_echo "#define _WANT_REGISTER_FINI 1" >>confdefs.h =20 fi =20 if test "${newlib_io_long_long}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_IO_LONG_LONG 1 -_ACEOF + +$as_echo "#define _WANT_IO_LONG_LONG 1" >>confdefs.h =20 fi =20 if test "${newlib_io_long_double}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_IO_LONG_DOUBLE 1 -_ACEOF + +$as_echo "#define _WANT_IO_LONG_DOUBLE 1" >>confdefs.h =20 fi =20 if test "${newlib_io_pos_args}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_IO_POS_ARGS 1 -_ACEOF + +$as_echo "#define _WANT_IO_POS_ARGS 1" >>confdefs.h =20 fi =20 if test "${newlib_reent_small}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_REENT_SMALL 1 -_ACEOF + +$as_echo "#define _WANT_REENT_SMALL 1" >>confdefs.h =20 fi =20 if test "${newlib_global_stdio_streams}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_REENT_GLOBAL_STDIO_STREAMS 1 -_ACEOF + +$as_echo "#define _WANT_REENT_GLOBAL_STDIO_STREAMS 1" >>confdefs.h =20 fi =20 +_mb_len_max=3D1 if test "${newlib_mb}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _MB_CAPABLE 1 -_ACEOF =20 -cat >>confdefs.h <<_ACEOF -#define _MB_LEN_MAX 8 -_ACEOF - -else -cat >>confdefs.h <<_ACEOF -#define _MB_LEN_MAX 1 -_ACEOF +$as_echo "#define _MB_CAPABLE 1" >>confdefs.h =20 + _mb_len_max=3D8 fi =20 -if test "${newlib_iconv_external_ccs}" =3D "yes"; then cat >>confdefs.h <<_ACEOF -#define _ICONV_ENABLE_EXTERNAL_CCS 1 +#define _MB_LEN_MAX $_mb_len_max _ACEOF =20 -fi =20 =20 $as_echo "#define _NEWLIB_VERSION \"4.2.0\"" >>confdefs.h @@ -12608,9 +12591,8 @@ else fi =20 if test "${newlib_iconv}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _ICONV_ENABLED 1 -_ACEOF + +$as_echo "#define _ICONV_ENABLED 1" >>confdefs.h =20 fi =20 @@ -12618,93 +12600,80 @@ if test "x${newlib_iconv_external_ccs}" =3D "xyes= "; then if test "x${newlib_iconv}" =3D "x"; then as_fn_error use --enable-newlib-iconv to enable it. "--enable-newlib= -iconv-external-ccs option can't be used if iconv library is disabled" "$LI= NENO" 5 fi - cat >>confdefs.h <<_ACEOF -#define _ICONV_ENABLE_EXTERNAL_CCS 1 -_ACEOF + +$as_echo "#define _ICONV_ENABLE_EXTERNAL_CCS 1" >>confdefs.h =20 fi =20 if test "${newlib_atexit_dynamic_alloc}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _ATEXIT_DYNAMIC_ALLOC 1 -_ACEOF + +$as_echo "#define _ATEXIT_DYNAMIC_ALLOC 1" >>confdefs.h =20 fi =20 if test "${newlib_global_atexit}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _REENT_GLOBAL_ATEXIT 1 -_ACEOF + +$as_echo "#define _REENT_GLOBAL_ATEXIT 1" >>confdefs.h =20 fi =20 if test "${newlib_fvwrite_in_streamio}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _FVWRITE_IN_STREAMIO 1 -_ACEOF + +$as_echo "#define _FVWRITE_IN_STREAMIO 1" >>confdefs.h =20 fi =20 if test "${newlib_fseek_optimization}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _FSEEK_OPTIMIZATION 1 -_ACEOF + +$as_echo "#define _FSEEK_OPTIMIZATION 1" >>confdefs.h =20 fi =20 if test "${newlib_wide_orient}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WIDE_ORIENT 1 -_ACEOF + +$as_echo "#define _WIDE_ORIENT 1" >>confdefs.h =20 fi =20 if test "${newlib_nano_malloc}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _NANO_MALLOC 1 -_ACEOF + +$as_echo "#define _NANO_MALLOC 1" >>confdefs.h =20 fi =20 if test "${newlib_unbuf_stream_opt}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _UNBUF_STREAM_OPT 1 -_ACEOF + +$as_echo "#define _UNBUF_STREAM_OPT 1" >>confdefs.h =20 fi =20 if test "${lite_exit}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _LITE_EXIT 1 -_ACEOF + +$as_echo "#define _LITE_EXIT 1" >>confdefs.h =20 fi =20 if test "${newlib_nano_formatted_io}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _NANO_FORMATTED_IO 1 -_ACEOF + +$as_echo "#define _NANO_FORMATTED_IO 1" >>confdefs.h =20 fi =20 if test "${newlib_retargetable_locking}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _RETARGETABLE_LOCKING 1 -_ACEOF + +$as_echo "#define _RETARGETABLE_LOCKING 1" >>confdefs.h =20 fi =20 if test "${newlib_long_time_t}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_USE_LONG_TIME_T 1 -_ACEOF + +$as_echo "#define _WANT_USE_LONG_TIME_T 1" >>confdefs.h =20 fi =20 if test "${newlib_use_gdtoa}" =3D "yes"; then -cat >>confdefs.h <<_ACEOF -#define _WANT_USE_GDTOA 1 -_ACEOF + +$as_echo "#define _WANT_USE_GDTOA 1" >>confdefs.h =20 fi =20 @@ -12816,9 +12785,8 @@ fi $as_echo "$libc_cv_initfinit_array" >&6; } =20 if test $libc_cv_initfinit_array =3D yes; then - cat >>confdefs.h <<_ACEOF -#define _HAVE_INITFINI_ARRAY 1 -_ACEOF + +$as_echo "#define _HAVE_INITFINI_ARRAY 1" >>confdefs.h =20 fi =20 @@ -12850,7 +12818,8 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $libc_cv_cc_loop_to_funct= ion" >&5 $as_echo "$libc_cv_cc_loop_to_function" >&6; } if test $libc_cv_cc_loop_to_function =3D yes; then - $as_echo "#define _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1" >>confdefs.h + +$as_echo "#define _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL 1" >>confdefs.h =20 fi =20 @@ -12890,9 +12859,8 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acnewlib_cv_type_long_do= uble" >&5 $as_echo "$acnewlib_cv_type_long_double" >&6; } if test $acnewlib_cv_type_long_double =3D yes; then - cat >>confdefs.h <<_ACEOF -#define _HAVE_LONG_DOUBLE 1 -_ACEOF + +$as_echo "#define _HAVE_LONG_DOUBLE 1" >>confdefs.h =20 fi if test x"$acnewlib_cv_type_long_double" =3D x"yes"; then @@ -12935,9 +12903,8 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $newlib_cv_ldbl_eq_dbl" >= &5 $as_echo "$newlib_cv_ldbl_eq_dbl" >&6; } if test $newlib_cv_ldbl_eq_dbl =3D yes; then - cat >>confdefs.h <<_ACEOF -#define _LDBL_EQ_DBL 1 -_ACEOF + +$as_echo "#define _LDBL_EQ_DBL 1" >>confdefs.h =20 fi =20 diff --git a/newlib/configure.ac b/newlib/configure.ac index 8dca042aa..35d94666a 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -433,56 +433,54 @@ fi AC_SUBST(EXEEXT_FOR_BUILD) =20 if test "${newlib_elix_level}" -gt "0"; then -AC_DEFINE_UNQUOTED(_ELIX_LEVEL,${newlib_elix_level}) + AC_DEFINE_UNQUOTED(_ELIX_LEVEL, ${newlib_elix_level}, [EL/IX level]) fi =20 if test "${newlib_reent_check_verify}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_REENT_CHECK_VERIFY) + AC_DEFINE(_REENT_CHECK_VERIFY, 1, [Verify _REENT_CHECK macros allocate m= emory successfully.]) fi =20 if test "${newlib_io_c99_formats}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_IO_C99_FORMATS) + AC_DEFINE(_WANT_IO_C99_FORMATS, 1, [Enable C99 formats support (e.g. %a,= %zu, ...) in IO functions like printf/scanf.]) fi =20 if test "${newlib_register_fini}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_REGISTER_FINI) + AC_DEFINE(_WANT_REGISTER_FINI, 1, [Register application finalization fun= ction using atexit.]) fi =20 if test "${newlib_io_long_long}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_IO_LONG_LONG) + AC_DEFINE(_WANT_IO_LONG_LONG, 1, [Define to enable long long type suppor= t in IO functions like printf/scanf.]) fi =20 if test "${newlib_io_long_double}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_IO_LONG_DOUBLE) + AC_DEFINE(_WANT_IO_LONG_DOUBLE, 1, [Define to enable long double type su= pport in IO functions like printf/scanf.]) fi =20 if test "${newlib_io_pos_args}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_IO_POS_ARGS) + AC_DEFINE(_WANT_IO_POS_ARGS, 1, [Positional argument support in printf f= unctions enabled.]) fi =20 if test "${newlib_reent_small}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_REENT_SMALL) + AC_DEFINE(_WANT_REENT_SMALL, 1, [Optional reentrant struct support. Use= d mostly on platforms with very restricted storage.]) fi =20 if test "${newlib_global_stdio_streams}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_REENT_GLOBAL_STDIO_STREAMS) + AC_DEFINE(_WANT_REENT_GLOBAL_STDIO_STREAMS, 1, + [Define to move the stdio stream FILE objects out of struct _reent an= d make them global. + The stdio stream pointers of struct _reent are initialized to point = to the global stdio FILE stream objects.]) fi =20 +_mb_len_max=3D1 if test "${newlib_mb}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_MB_CAPABLE) -AC_DEFINE_UNQUOTED(_MB_LEN_MAX,8) -else -AC_DEFINE_UNQUOTED(_MB_LEN_MAX,1) -fi - -if test "${newlib_iconv_external_ccs}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_ICONV_ENABLE_EXTERNAL_CCS) + AC_DEFINE(_MB_CAPABLE, 1, [Multibyte supported.]) + _mb_len_max=3D8 fi +AC_DEFINE_UNQUOTED(_MB_LEN_MAX, $_mb_len_max, [Multibyte max length.]) =20 -AC_DEFINE(_NEWLIB_VERSION,"NEWLIB_VERSION","The newlib version in string f= ormat.") -AC_DEFINE(__NEWLIB__,NEWLIB_MAJOR_VERSION,"The newlib major version number= .") -AC_DEFINE(__NEWLIB_MINOR__,NEWLIB_MINOR_VERSION,"The newlib minor version = number.") -AC_DEFINE(__NEWLIB_PATCHLEVEL__,NEWLIB_PATCHLEVEL_VERSION,"The newlib patc= h level.") +AC_DEFINE(_NEWLIB_VERSION, "NEWLIB_VERSION", [The newlib version in string= format.]) +AC_DEFINE(__NEWLIB__, NEWLIB_MAJOR_VERSION, [The newlib major version numb= er.]) +AC_DEFINE(__NEWLIB_MINOR__, NEWLIB_MINOR_VERSION, [The newlib minor versio= n number.]) +AC_DEFINE(__NEWLIB_PATCHLEVEL__, NEWLIB_PATCHLEVEL_VERSION, [The newlib pa= tch level.]) =20 if test "${multilib}" =3D "yes"; then multilib_arg=3D"--enable-multilib" @@ -491,62 +489,62 @@ else fi =20 if test "${newlib_iconv}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_ICONV_ENABLED,1) + AC_DEFINE(_ICONV_ENABLED, 1, [ICONV enabled.]) fi =20 if test "x${newlib_iconv_external_ccs}" =3D "xyes"; then if test "x${newlib_iconv}" =3D "x"; then AC_MSG_ERROR(--enable-newlib-iconv-external-ccs option can't be used= if iconv library is disabled, use --enable-newlib-iconv to enable it.) fi - AC_DEFINE_UNQUOTED(_ICONV_ENABLE_EXTERNAL_CCS,1) + AC_DEFINE(_ICONV_ENABLE_EXTERNAL_CCS, 1, [Enable ICONV external CCS file= s loading capabilities.]) fi =20 if test "${newlib_atexit_dynamic_alloc}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_ATEXIT_DYNAMIC_ALLOC) + AC_DEFINE(_ATEXIT_DYNAMIC_ALLOC, 1, [If atexit() may dynamically allocat= e space for cleanup functions.]) fi =20 if test "${newlib_global_atexit}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_REENT_GLOBAL_ATEXIT) + AC_DEFINE(_REENT_GLOBAL_ATEXIT, 1, [Define if declare atexit data as glo= bal.]) fi =20 if test "${newlib_fvwrite_in_streamio}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_FVWRITE_IN_STREAMIO) + AC_DEFINE(_FVWRITE_IN_STREAMIO, 1, [Define if ivo supported in streamio.= ]) fi =20 if test "${newlib_fseek_optimization}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_FSEEK_OPTIMIZATION) + AC_DEFINE(_FSEEK_OPTIMIZATION, 1, [Define if fseek functions support see= k optimization.]) fi =20 if test "${newlib_wide_orient}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WIDE_ORIENT) + AC_DEFINE(_WIDE_ORIENT, 1, [Define if wide char orientation is supported= .]) fi =20 if test "${newlib_nano_malloc}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_NANO_MALLOC) + AC_DEFINE(_NANO_MALLOC, 1, [nano version of malloc is used.]) fi =20 if test "${newlib_unbuf_stream_opt}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_UNBUF_STREAM_OPT) + AC_DEFINE(_UNBUF_STREAM_OPT, 1, [Define if unbuffered stream file optimi= zation is supported.]) fi =20 if test "${lite_exit}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_LITE_EXIT) + AC_DEFINE(_LITE_EXIT, 1, [Define if lite version of exit supported.]) fi =20 if test "${newlib_nano_formatted_io}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_NANO_FORMATTED_IO) + AC_DEFINE(_NANO_FORMATTED_IO, 1, [Define if small footprint nano-formatt= ed-IO implementation used.]) fi =20 if test "${newlib_retargetable_locking}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_RETARGETABLE_LOCKING) + AC_DEFINE(_RETARGETABLE_LOCKING, 1, [Define if using retargetable functi= ons for default lock routines.]) fi =20 if test "${newlib_long_time_t}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_USE_LONG_TIME_T) + AC_DEFINE(_WANT_USE_LONG_TIME_T, 1, [Define to use type long for time_t.= ]) fi =20 if test "${newlib_use_gdtoa}" =3D "yes"; then -AC_DEFINE_UNQUOTED(_WANT_USE_GDTOA) + AC_DEFINE(_WANT_USE_GDTOA, 1, [Define if using gdtoa rather than legacy = ldtoa.]) fi =20 dnl @@ -648,7 +646,7 @@ fi rm -f conftest*]) AC_SUBST(libc_cv_initfinit_array) if test $libc_cv_initfinit_array =3D yes; then - AC_DEFINE_UNQUOTED(_HAVE_INITFINI_ARRAY) + AC_DEFINE(_HAVE_INITFINI_ARRAY, 1, [Define if the linker supports .prein= it_array/.init_array/.fini_array sections.]) fi =20 AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \ @@ -666,7 +664,7 @@ then fi rm -f conftest*]) if test $libc_cv_cc_loop_to_function =3D yes; then - AC_DEFINE(_HAVE_CC_INHIBIT_LOOP_TO_LIBCALL) + AC_DEFINE(_HAVE_CC_INHIBIT_LOOP_TO_LIBCALL, 1, [Define if compiler suppo= rts -fno-tree-loop-distribute-patterns.]) fi AC_SUBST(libc_cv_cc_loop_to_function) =20 @@ -700,7 +698,7 @@ else fi rm -f conftest*]) if test $acnewlib_cv_type_long_double =3D yes; then - AC_DEFINE_UNQUOTED(_HAVE_LONG_DOUBLE) + AC_DEFINE(_HAVE_LONG_DOUBLE, 1, [Define if the platform supports long do= uble type.]) fi AM_CONDITIONAL(HAVE_LONG_DOUBLE, test x"$acnewlib_cv_type_long_double" =3D= x"yes") =20 @@ -724,7 +722,7 @@ else fi rm -f conftest*]) if test $newlib_cv_ldbl_eq_dbl =3D yes; then - AC_DEFINE_UNQUOTED(_LDBL_EQ_DBL) + AC_DEFINE(_LDBL_EQ_DBL, 1, [Define if the platform long double type is e= qual to double.]) fi =20 AC_SUBST(CFLAGS) diff --git a/newlib/newlib.hin b/newlib/newlib.hin index db3446492..f1198577c 100644 --- a/newlib/newlib.hin +++ b/newlib/newlib.hin @@ -12,91 +12,92 @@ /* Newlib version */ #include <_newlib_version.h> =20 -/* C99 formats support (such as %a, %zu, ...) in IO functions like - * printf/scanf enabled */ +/* Enable C99 formats support (e.g. %a, %zu, ...) in IO functions like + printf/scanf. */ #undef _WANT_IO_C99_FORMATS =20 -/* long long type support in IO functions like printf/scanf enabled */ +/* Define to enable long long type support in IO functions like printf/sca= nf. + */ #undef _WANT_IO_LONG_LONG =20 /* Register application finalization function using atexit. */ #undef _WANT_REGISTER_FINI =20 -/* long double type support in IO functions like printf/scanf enabled */ +/* Define to enable long double type support in IO functions like + printf/scanf. */ #undef _WANT_IO_LONG_DOUBLE =20 -/* Positional argument support in printf functions enabled. */ +/* Positional argument support in printf functions enabled. */ #undef _WANT_IO_POS_ARGS =20 -/* Optional reentrant struct support. Used mostly on platforms with - very restricted storage. */ +/* Optional reentrant struct support. Used mostly on platforms with very + restricted storage. */ #undef _WANT_REENT_SMALL =20 /* Verify _REENT_CHECK macros allocate memory successfully. */ #undef _REENT_CHECK_VERIFY =20 -/* Multibyte supported */ +/* Multibyte supported. */ #undef _MB_CAPABLE =20 -/* MB_LEN_MAX */ +/* Multibyte max length. */ #undef _MB_LEN_MAX =20 -/* ICONV enabled */ +/* ICONV enabled. */ #undef _ICONV_ENABLED =20 -/* Enable ICONV external CCS files loading capabilities */ +/* Enable ICONV external CCS files loading capabilities. */ #undef _ICONV_ENABLE_EXTERNAL_CCS =20 /* Define if the linker supports .preinit_array/.init_array/.fini_array - * sections. */ + sections. */ #undef _HAVE_INITFINI_ARRAY =20 -/* True if atexit() may dynamically allocate space for cleanup - functions. */ -#undef _ATEXIT_DYNAMIC_ALLOC +/* If atexit() may dynamically allocate space for cleanup functions. */ +#undef _ATEXIT_DYNAMIC_ALLOC =20 -/* Define if the platform supports long double type. */ -#undef _HAVE_LONG_DOUBLE +/* Define if the platform supports long double type. */ +#undef _HAVE_LONG_DOUBLE =20 /* Define if compiler supports -fno-tree-loop-distribute-patterns. */ -#undef _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL +#undef _HAVE_CC_INHIBIT_LOOP_TO_LIBCALL =20 -/* Define if the platform long double type is equal to double. */ -#undef _LDBL_EQ_DBL +/* Define if the platform long double type is equal to double. */ +#undef _LDBL_EQ_DBL =20 -/* Define if ivo supported in streamio. */ +/* Define if ivo supported in streamio. */ #undef _FVWRITE_IN_STREAMIO =20 -/* Define if fseek functions support seek optimization. */ +/* Define if fseek functions support seek optimization. */ #undef _FSEEK_OPTIMIZATION =20 -/* Define if wide char orientation is supported. */ -#undef _WIDE_ORIENT +/* Define if wide char orientation is supported. */ +#undef _WIDE_ORIENT =20 -/* Define if unbuffered stream file optimization is supported. */ +/* Define if unbuffered stream file optimization is supported. */ #undef _UNBUF_STREAM_OPT =20 -/* Define if lite version of exit supported. */ +/* Define if lite version of exit supported. */ #undef _LITE_EXIT =20 -/* Define if declare atexit data as global. */ +/* Define if declare atexit data as global. */ #undef _REENT_GLOBAL_ATEXIT =20 /* Define to move the stdio stream FILE objects out of struct _reent and m= ake - them global. The stdio stream pointers of struct _reent are initialize= d to + them global. The stdio stream pointers of struct _reent are initialized= to point to the global stdio FILE stream objects. */ #undef _WANT_REENT_GLOBAL_STDIO_STREAMS =20 -/* Define if small footprint nano-formatted-IO implementation used. */ +/* Define if small footprint nano-formatted-IO implementation used. */ #undef _NANO_FORMATTED_IO =20 -/* Define if using retargetable functions for default lock routines. */ +/* Define if using retargetable functions for default lock routines. */ #undef _RETARGETABLE_LOCKING =20 -/* Define to use type long for time_t. */ +/* Define to use type long for time_t. */ #undef _WANT_USE_LONG_TIME_T =20 -/* Define if using gdtoa rather than legacy ldtoa. */ +/* Define if using gdtoa rather than legacy ldtoa. */ #undef _WANT_USE_GDTOA =20 /*