regex: Irix fixes and point release

[SVN r8653]
This commit is contained in:
John Maddock
2001-01-20 12:23:51 +00:00
parent 1d0dabd892
commit e927090ba0
47 changed files with 58 additions and 48 deletions

View File

@ -16,7 +16,7 @@
/*
* LOCATION: see http://www.boost.org for most recent version.
* FILE regex_config.hpp
* VERSION 3.02
* VERSION 3.03
* DESCRIPTION: auto-configure options for regular expression code.
*/
@ -336,6 +336,10 @@ Do not change this file unless you really really have to, add options to
#define BOOST_RE_NO_SWPRINTF
#endif
#ifdef __sgi // SGI IRIX C++
#define BOOST_RE_NO_SWPRINTF
#endif
#endif // BOOST_RE_AUTO_CONFIGURE
@ -1195,6 +1199,12 @@ namespace std{
#ifndef BOOST_RE_NO_LOCALE_H
using ::mbstate_t;
#endif
using ::fseek;
using ::fread;
using ::ftell;
using ::fopen;
using ::fclose;
using ::FILE;
#endif // BOOST_RE_NO_WCSTRING
}