From 766f39ed01d7c9b3409d0a7ad3cac5ff3eeda677 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Fri, 13 May 2016 23:46:37 +0200 Subject: [PATCH] Remove fix-enodata.patch integrated upstream --- debian/patches/fix-enodata.patch | 23 ----------------------- debian/patches/series | 1 - 2 files changed, 24 deletions(-) delete mode 100644 debian/patches/fix-enodata.patch diff --git a/debian/patches/fix-enodata.patch b/debian/patches/fix-enodata.patch deleted file mode 100644 index 68c03e7..0000000 --- a/debian/patches/fix-enodata.patch +++ /dev/null @@ -1,23 +0,0 @@ -Fix building on systems which don't have ENODATA - -This patch (a modified form of the original patch from Cyril Brulebois -) fixed building on systems which don't have ENODATA -(e.g. GNU/kFreeBSD). Upstream is aware of it. - -Iustin Pop, -Wed, 12 Aug 2009 21:58:36 +0200 ---- a/xattr.c -+++ b/xattr.c -@@ -529,7 +529,11 @@ - } - nalloc = nval; - continue; -- } else if(errno == ENODATA || errno == ENOATTR) { -+ } else if( -+#ifdef ENODATA -+ errno == ENODATA || -+#endif -+ errno == ENOATTR) { - /* this attribute has gone away since we queried - the attribute list */ - missing = 1; diff --git a/debian/patches/series b/debian/patches/series index 3480d68..6712e7b 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ -fix-enodata.patch sphinx-1.3.patch -- 2.39.2