diff options
author | Nathan Scott <nathans@sgi.com> | 2003-10-13 03:31:00 +0000 |
---|---|---|
committer | Nathan Scott <nathans@sgi.com> | 2003-10-13 03:31:00 +0000 |
commit | 28950405264dbb46f4095bc1a4a6bc8135560a0c (patch) | |
tree | 8d153cb70d09094737a545d46fdc8fbcbca1ca61 | |
parent | c6c260e49a567541bbac28ee90e76415cbd5d3b0 (diff) | |
download | attr-28950405264dbb46f4095bc1a4a6bc8135560a0c.tar.gz |
Fix some GNU/Hurd build issues for some Debian people porting to that platform.
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | include/builddefs.in | 2 | ||||
-rw-r--r-- | libattr/libattr.c | 1 |
5 files changed, 8 insertions, 5 deletions
@@ -3,5 +3,5 @@ # PKG_MAJOR=2 PKG_MINOR=4 -PKG_REVISION=11 +PKG_REVISION=12 PKG_BUILD=1 diff --git a/debian/changelog b/debian/changelog index bc75f0b..0e2f735 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -attr (2.4.10-1) unstable; urgency=low +attr (2.4.12-1) unstable; urgency=low * New upstream release + * Fix GNU/Hurd build issues, thanks to Robert Millan (closes: #215154) - -- Nathan Scott <nathans@debian.org> Fri, 29 Aug 2003 08:55:04 +1000 + -- Nathan Scott <nathans@debian.org> Mon, 13 Oct 2003 13:02:58 +1000 attr (2.4.8-1) unstable; urgency=low diff --git a/doc/CHANGES b/doc/CHANGES index 9d45e28..7b2c46e 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,3 +1,6 @@ +attr-2.4.12 (13 October 2003) + - Fix build on the GNU/Hurd platform for some Debian folks. + attr-2.4.11 (07 October 2003) - Man page tweaks diff --git a/include/builddefs.in b/include/builddefs.in index ca81852..61f3048 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -84,7 +84,7 @@ ENABLE_SHARED = @enable_shared@ ENABLE_GETTEXT = @enable_gettext@ HAVE_ZIPPED_MANPAGES = @have_zipped_manpages@ -ifeq ($(PKG_PLATFORM),linux) +ifneq "$(findstring $(PKG_PLATFORM), linux gnuhurd)" "" PCFLAGS = -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 endif diff --git a/libattr/libattr.c b/libattr/libattr.c index 56c08ec..9b1a810 100644 --- a/libattr/libattr.c +++ b/libattr/libattr.c @@ -36,7 +36,6 @@ #include <string.h> #include <unistd.h> #include <sys/types.h> -#include <asm/types.h> #include <attr/xattr.h> #include <attr/attributes.h> |