This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
BUG in libstdc++-v3/config/os/generic/error_constants.h
- From: Dongsheng Song <dongsheng dot song at gmail dot com>
- To: gcc at gcc dot gnu dot org
- Date: Wed, 30 Jan 2008 14:04:46 +0800
- Subject: BUG in libstdc++-v3/config/os/generic/error_constants.h
- Openpgp: id=99697DA6
................ snip libstdc++-v3/config/os/generic/error_constants.h
................
not_supported = ENOTSUP,
................ snip libstdc++-v3/config/os/generic/error_constants.h
................
OpenBSD 4.2 not defined ENOTSUP, only EOPNOTSUPP !
................ snip /usr/include/sys/errno.h ................
#define EOPNOTSUPP 45 /* Operation not supported */
................ snip /usr/include/sys/errno.h ................
This affect gcc 4.3/trunk only. Maybe we should add a new file
libstdc++-v3/config/os/bsd/openbsd/error_constants.h like mingw32 ?
Dongsheng