From 437c5c5085ff30b4a4960b2b53d06728c788361d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 17 Jan 2022 22:20:20 -0500 Subject: newlib: internalize HAVE_INITFINI_ARRAY This define is only used by newlib internally, so stop exporting it as HAVE_INITFINI_ARRAY since this can conflict with defines packages use themselves. We don't really need to add _ to HAVE_INIT_FINI too since it isn't exported in newlib.h, but might as well be consistent here. We can't (easily) add this to newlib_cflags like HAVE_INIT_FINI is because this is based on a compile-time test in the top configure, not on plain shell code in configure.host. We'd have to replicate the test in every subdir in order to have it passed down. --- newlib/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'newlib/configure.ac') diff --git a/newlib/configure.ac b/newlib/configure.ac index 361bbfbac..8dca042aa 100644 --- a/newlib/configure.ac +++ b/newlib/configure.ac @@ -648,7 +648,7 @@ fi rm -f conftest*]) AC_SUBST(libc_cv_initfinit_array) if test $libc_cv_initfinit_array = yes; then - AC_DEFINE_UNQUOTED(HAVE_INITFINI_ARRAY) + AC_DEFINE_UNQUOTED(_HAVE_INITFINI_ARRAY) fi AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \ -- cgit v1.2.3