Commit 554241c3 by Ulrich Drepper Committed by Jeff Law

Bring over lost changes from Cygnus's directory.

	* Missing ChangeLog entries.
	* Whitespace fixes.
	* Enable multilib by default
	* One stl fix (#ifdef -> #if)

From-SVN: r26234
parent 5e62dee5
...@@ -33,6 +33,20 @@ Thu Feb 18 19:53:17 1999 Marc Espie <espie@cvs.openbsd.org> ...@@ -33,6 +33,20 @@ Thu Feb 18 19:53:17 1999 Marc Espie <espie@cvs.openbsd.org>
* config/openbsd.ml: New file. * config/openbsd.ml: New file.
* config/openbsd.mt: New file. * config/openbsd.mt: New file.
1999-02-04 Ulrich Drepper <drepper@cygnus.com>
* configure.in: Recognize --enable-threads=posix for all
platforms.
* config/posix.mt: New file.
* configure.in: Add fragments for Solaris defining macro specifying
thread library to be used.
* config/sol2pth.mt: New file
* config/sol2solth.mt: New file.
* stl/stl_alloc.h: Add support for Solaris thread library.
* stl/stl_config.h: Recognize _SOLTHREADS and define internal macros
appropriately.
1999-01-28 Baron Roberts <baron@sgi.com> 1999-01-28 Baron Roberts <baron@sgi.com>
* string: Uncomment wstring declaration. * string: Uncomment wstring declaration.
......
...@@ -176,6 +176,11 @@ if [ -n "${with_cross_host}" ] ; then ...@@ -176,6 +176,11 @@ if [ -n "${with_cross_host}" ] ; then
mv -f Makefile.tem Makefile mv -f Makefile.tem Makefile
fi fi
# enable multilib-ing by default.
if [ -z "${enable_multilib}" ]; then
enable_multilib=yes
fi
. ${topsrcdir}/config-ml.in . ${topsrcdir}/config-ml.in
gxx_include_dir= gxx_include_dir=
......
...@@ -626,7 +626,7 @@ public: ...@@ -626,7 +626,7 @@ public:
template<class _CharT, class _Traits, class _Alloc> template<class _CharT, class _Traits, class _Alloc>
explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s, explicit bitset(const basic_string<_CharT,_Traits,_Alloc>& __s,
size_t __pos = 0, size_t __pos = 0,
size_t __n = size_t(basic_string<_CharT,_Traits,_Alloc>::npos)) size_t __n = basic_string<_CharT,_Traits,_Alloc>::npos)
: _Base() : _Base()
{ {
if (__pos > __s.size()) if (__pos > __s.size())
...@@ -753,7 +753,7 @@ public: ...@@ -753,7 +753,7 @@ public:
unsigned long to_ulong() const { return _M_do_to_ulong(); } unsigned long to_ulong() const { return _M_do_to_ulong(); }
#ifdef __STL_EXPLICIT_FUNCTION_TMPL_ARGS #if __STL_EXPLICIT_FUNCTION_TMPL_ARGS
template <class _CharT, class _Traits, class _Alloc> template <class _CharT, class _Traits, class _Alloc>
basic_string<_CharT, _Traits, _Alloc> to_string() const { basic_string<_CharT, _Traits, _Alloc> to_string() const {
basic_string<_CharT, _Traits, _Alloc> __result; basic_string<_CharT, _Traits, _Alloc> __result;
...@@ -1061,4 +1061,3 @@ __STL_END_NAMESPACE ...@@ -1061,4 +1061,3 @@ __STL_END_NAMESPACE
// Local Variables: // Local Variables:
// mode:C++ // mode:C++
// End: // End:
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment