aboutsummaryrefslogtreecommitdiff
path: root/newlib/configure.in
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2020-01-21 15:12:34 -0500
committerJeff Johnston <jjohnstn@redhat.com>2020-01-21 15:12:34 -0500
commit8b39f7406c7b819bc45a83e9c94531221a6b3b34 (patch)
tree8a0a932fd8779c678b8e24825cda92105d237c57 /newlib/configure.in
parentf5da56ab5c033d4e061b653d2592a8a65fb4bed7 (diff)
downloadnewlib-8b39f7406c7b819bc45a83e9c94531221a6b3b34.zip
newlib-8b39f7406c7b819bc45a83e9c94531221a6b3b34.tar.gz
newlib-8b39f7406c7b819bc45a83e9c94531221a6b3b34.tar.bz2
Change the reent verify check option to document disabling it
- also change the handling of default_newlib_reent_check_verify to be the same as other default variables in configure.host - regenerate newlib/configure
Diffstat (limited to 'newlib/configure.in')
-rw-r--r--newlib/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/configure.in b/newlib/configure.in
index ec5039d..67597bb 100644
--- a/newlib/configure.in
+++ b/newlib/configure.in
@@ -67,9 +67,9 @@ AC_ARG_ENABLE(newlib-mb,
esac], [newlib_mb=])dnl
dnl Enable verification of successful memory allocation for _REENT_CHECK family of macros
-dnl Support --enable-newlib-reent-check-verify
+dnl Support --disable-newlib-reent-check-verify
AC_ARG_ENABLE(newlib-reent-check-verify,
-[ --enable-newlib-reent-check-verify enable checking of _REENT_CHECK memory allocation],
+[ --disable-newlib-reent-check-verify disable checking of _REENT_CHECK memory allocation],
[case "${enableval}" in
yes) newlib_reent_check_verify=yes;;
no) newlib_reent_check_verify=no ;;