Fix GDB build using mingw.org's MinGW
libiberty/ 2018-07-18 Eli Zaretskii <eliz@gnu.org> PR gdb/23434 * libiberty/simple-object-elf.c (ENOTSUP): If not defined by errno.h, redirect ENOTSUP to ENOSYS.
This commit is contained in:
parent
442a6ce858
commit
db3410f80f
@ -1,3 +1,9 @@
|
||||
2018-07-18 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
PR gdb/23434
|
||||
* libiberty/simple-object-elf.c (ENOTSUP): If not defined by
|
||||
errno.h, redirect ENOTSUP to ENOSYS.
|
||||
|
||||
2018-06-19 Simon Marchi <simon.marchi@ericsson.com>
|
||||
|
||||
* configure.ac: Remove AC_PREREQ.
|
||||
|
@ -22,6 +22,10 @@ Boston, MA 02110-1301, USA. */
|
||||
#include "simple-object.h"
|
||||
|
||||
#include <errno.h>
|
||||
/* mingw.org's MinGW doesn't have ENOTSUP. */
|
||||
#ifndef ENOTSUP
|
||||
# define ENOTSUP ENOSYS
|
||||
#endif
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef HAVE_STDLIB_H
|
||||
|
Loading…
Reference in New Issue
Block a user