diff options
author | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-19 22:55:07 +0000 |
---|---|---|
committer | bkoz <bkoz@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-12-19 22:55:07 +0000 |
commit | 23a9a84dbd9572c13aae7cdfec4579020c58821a (patch) | |
tree | cd64abf5f5b813d563c8b82658103a5022fc517e /libstdc++-v3/configure | |
parent | 03c84da8d02166d70c97381fb5eb0cc3d848d2b2 (diff) | |
download | gcc-23a9a84dbd9572c13aae7cdfec4579020c58821a.tar.gz |
2000-12-19 Benjamin Kosnik <bkoz@fillmore.constant.com>
* configure.in: Don't turn on long long by default.
* configure: Regenerate.
* include/c/bits/std_cstdio.h: Remove c++config.h include.
* src/locale.cc: Formatting tweaks.
* testsuite/22_locale/ctype.cc (char<unsigned char>): Provide
member functions.
2000-12-19 Loren J. Rittle <ljrittle@acm.org>
* testsuite/22_locale/ctype.cc (test01): Correct ~ operator usage.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@38388 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-x | libstdc++-v3/configure | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 9139051bc0f..4dd963cfc5a 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -41,7 +41,7 @@ ac_help="$ac_help ac_help="$ac_help --enable-c-mbchar enable multibyte (wide) characters [default=yes]" ac_help="$ac_help - --enable-long-long turns on 'long long' [default=yes]" + --enable-long-long turns on 'long long' [default=no]" ac_help="$ac_help --enable-cshadow-headers construct "shadowed" C header files for g++ [default=no]" @@ -2881,7 +2881,7 @@ if test "${enable_long_long+set}" = set; then *) { echo "configure: error: Unknown argument to enable/disable long long" 1>&2; exit 1; } ;; esac else - enable_long_long=yes + enable_long_long=no fi # Allow use of os-dependent settings, so that macros that turn on |