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.
(cherry picked from commit
db3410f80f793189d3c8afb8b80951333d3fe007)
+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.
#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