From 22f3b2e9602f138b6bf4a45d50fa777c9fe782c5 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 25 Oct 2011 12:31:44 +0200 Subject: [PATCH] build: do not remove definition of ENODATA, after all * src/system.h (ENODATA): Restore definition. gnulib defines it only on native Windows systems, so removing our definition would have provoked build failure on systems that use it, like FreeBSD. Reported by Bruno Haible in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/28739/focus=28795 * gnulib: Update to latest, to get new ENODATA-exempting maint.mk rule. --- gnulib | 2 +- src/system.h | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gnulib b/gnulib index 71f13422f3..f1a5c91522 160000 --- a/gnulib +++ b/gnulib @@ -1 +1 @@ -Subproject commit 71f13422f3e6345933513607255f1f7a7526e937 +Subproject commit f1a5c91522554791317dc2ee763fe8c017c7b810 diff --git a/src/system.h b/src/system.h index 19421a9dda..926def9570 100644 --- a/src/system.h +++ b/src/system.h @@ -76,6 +76,14 @@ you must include before including this file #include #include + +/* Some systems don't define this; POSIX mentions it but says it is + obsolete. gnulib defines it, but only on native Windows systems, + and there only because MSVC 10 does. */ +#ifndef ENODATA +# define ENODATA (-1) +#endif + #include #include #include "version.h" -- 2.47.2