diff options
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rwxr-xr-x | newlib/configure | 2 | ||||
-rw-r--r-- | newlib/configure.in | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 9f4b56869..5befc9a53 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +2014-07-07 Corinna Vinschen <vinschen@redhat.com> + + * configure.in (--enable-newlib-nano-formatted-io): Set to "no" + by default. + * configure: Regenerated. + 2014-07-04 Bin Cheng <bin.cheng@arm.com> * README (--enable-newlib-nano-formatted-io): Describe. diff --git a/newlib/configure b/newlib/configure index 991f9e6b5..74a7421aa 100755 --- a/newlib/configure +++ b/newlib/configure @@ -2484,7 +2484,7 @@ if test "${enable_newlib_nano_formatted_io+set}" = set; then : *) as_fn_error $? "bad value ${enableval} for newlib-nano-formatted-io" "$LINENO" 5 ;; esac else - newlib_nano_formatted_io=yes + newlib_nano_formatted_io=no fi diff --git a/newlib/configure.in b/newlib/configure.in index e1b3efaa7..9465787ed 100644 --- a/newlib/configure.in +++ b/newlib/configure.in @@ -216,7 +216,7 @@ AC_ARG_ENABLE(newlib_nano_formatted_io, yes) newlib_nano_formatted_io=yes ;; no) newlib_nano_formatted_io=no ;; *) AC_MSG_ERROR(bad value ${enableval} for newlib-nano-formatted-io) ;; - esac],[newlib_nano_formatted_io=yes]) + esac],[newlib_nano_formatted_io=no]) NEWLIB_CONFIGURE(.) |