diff options
author | Loren J. Rittle <ljrittle@acm.org> | 2000-11-17 22:38:49 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2000-11-17 22:38:49 +0000 |
commit | 8e2d9424bf801bdf62d43b9d4449b840bb050734 (patch) | |
tree | 41147fbd460b8ffe1d54eebe51216ad4d116a350 | |
parent | 95c8e04b098394262e6883b8ef5e713d080f92e5 (diff) | |
download | gcc-8e2d9424bf801bdf62d43b9d4449b840bb050734.zip gcc-8e2d9424bf801bdf62d43b9d4449b840bb050734.tar.gz gcc-8e2d9424bf801bdf62d43b9d4449b840bb050734.tar.bz2 |
acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Correct last patch to ``make --enable-cstdio=stdio the default''.
* acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Correct last patch
to ``make --enable-cstdio=stdio the default''.
* libstdc++-v3/aclocal.m4: Rebuilt.
* libstdc++-v3/configure: Rebuilt.
From-SVN: r37529
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 8 | ||||
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 8 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 6 |
4 files changed, 18 insertions, 11 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7965c88..71197d4 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2000-11-17 Loren J. Rittle <ljrittle@acm.org> + + * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Correct last patch + to ``make --enable-cstdio=stdio the default''. + * libstdc++-v3/aclocal.m4: Rebuilt. + * libstdc++-v3/configure: Rebuilt. + 2000-11-17 Phil Edwards <pme@sources.redhat.com> * acinclude.m4 (GLIBCPP_ENABLE_ATOMICITY): Move switch statement diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index a45d4d7..99e0292 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -1222,17 +1222,17 @@ dnl dnl GLIBCPP_ENABLE_CSTDIO dnl --enable-cstdio=libio sets config/c_io_libio.h and friends dnl -dnl default is libio +dnl default is stdio dnl AC_DEFUN(GLIBCPP_ENABLE_CSTDIO, [ AC_MSG_CHECKING([for cstdio to use]) AC_ARG_ENABLE(cstdio, - [ --enable-cstdio enable GNU libio for target io package. (default) + [ --enable-cstdio enable stdio for target io package. (default) --enable-cstdio=LIB use LIB target-speific io package.], if test x$enable_cstdio = xno; then - enable_cstdio=libio + enable_cstdio=stdio fi, - enable_cstdio=libio) + enable_cstdio=stdio) enable_cstdio_flag=$enable_cstdio diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 2aec375..23ede24 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -1234,17 +1234,17 @@ dnl dnl GLIBCPP_ENABLE_CSTDIO dnl --enable-cstdio=libio sets config/c_io_libio.h and friends dnl -dnl default is libio +dnl default is stdio dnl AC_DEFUN(GLIBCPP_ENABLE_CSTDIO, [ AC_MSG_CHECKING([for cstdio to use]) AC_ARG_ENABLE(cstdio, - [ --enable-cstdio enable GNU libio for target io package. (default) + [ --enable-cstdio enable stdio for target io package. (default) --enable-cstdio=LIB use LIB target-speific io package.], if test x$enable_cstdio = xno; then - enable_cstdio=libio + enable_cstdio=stdio fi, - enable_cstdio=libio) + enable_cstdio=stdio) enable_cstdio_flag=$enable_cstdio diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 223455f..64b6aa9 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -36,7 +36,7 @@ ac_help="$ac_help ac_help="$ac_help --enable-debug extra debugging, turn off optimization [default=no]" ac_help="$ac_help - --enable-cstdio enable GNU libio for target io package. (default) + --enable-cstdio enable stdio for target io package. (default) --enable-cstdio=LIB use LIB target-speific io package." ac_help="$ac_help --enable-c-mbchar enable multibyte (wide) characters [default=yes]" @@ -2678,10 +2678,10 @@ echo "configure:2677: checking for cstdio to use" >&5 if test "${enable_cstdio+set}" = set; then enableval="$enable_cstdio" if test x$enable_cstdio = xno; then - enable_cstdio=libio + enable_cstdio=stdio fi else - enable_cstdio=libio + enable_cstdio=stdio fi |