configure.in: Remove ENABLE_STD_NAMESPACE.

2001-04-23  Phil Edwards  <pme@sources.redhat.com>

	* configure.in:  Remove ENABLE_STD_NAMESPACE.
	* cp/decl2.c (flag_honor_std):  Always initialize to 1.
	* config.in:  Regenerated.
	* configure:  Regenerated.

From-SVN: r41497
This commit is contained in:
Phil Edwards 2001-04-23 04:07:16 +00:00
parent a3b1a352b0
commit e2584c5245
6 changed files with 295 additions and 285 deletions

View File

@ -1,3 +1,9 @@
2001-04-23 Phil Edwards <pme@sources.redhat.com>
* configure.in: Remove ENABLE_STD_NAMESPACE.
* config.in: Regenerated.
* configure: Regenerated.
2001-04-22 Stan Shebs <shebs@apple.com>
* config.gcc (powerpc-*-darwin*): Move the flag in xm-darwin.h

View File

@ -488,9 +488,6 @@
and preserves file table indicies exactly as given. */
#undef HAVE_AS_DWARF2_DEBUG_LINE
/* Define to 1 if you want to enable namespaces (-fhonor-std) by default. */
#undef ENABLE_STD_NAMESPACE
/* Define 0/1 to force the choice for exception handling model. */
#undef CONFIG_SJLJ_EXCEPTIONS

562
gcc/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -1692,9 +1692,6 @@ zlibinc=
AC_SUBST(zlibdir)
AC_SUBST(zlibinc)
AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, 1,
[Define to 1 if you want to enable namespaces (-fhonor-std) by default.])
dnl Very limited version of automake's enable-maintainer-mode
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])

View File

@ -1,3 +1,7 @@
2001-04-23 Phil Edwards <pme@sources.redhat.com>
* cp/decl2.c (flag_honor_std): Always initialize to 1.
2001-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.

View File

@ -402,7 +402,7 @@ int flag_use_cxa_atexit;
/* Nonzero to not ignore namespace std. */
int flag_honor_std = ENABLE_STD_NAMESPACE;
int flag_honor_std = 1;
/* Nonzero if we should expand functions calls inline at the tree
level, rather than at the RTL level. */