summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--VERSION2
-rw-r--r--debian/changelog6
-rw-r--r--doc/CHANGES4
-rw-r--r--libattr/syscalls.c15
4 files changed, 25 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 18a5ac0..2ef8775 100644
--- a/VERSION
+++ b/VERSION
@@ -3,5 +3,5 @@
#
PKG_MAJOR=2
PKG_MINOR=0
-PKG_REVISION=9
+PKG_REVISION=10
PKG_BUILD=0
diff --git a/debian/changelog b/debian/changelog
index ea86254..b7ea46f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+attr (2.0.10-1) unstable; urgency=low
+
+ * New upstream release
+
+ -- Nathan Scott <nathans@debian.org> Wed, 28 Aug 2002 13:39:50 +1000
+
attr (2.0.9-1) unstable; urgency=low
* New upstream release (mainly build-related changes)
diff --git a/doc/CHANGES b/doc/CHANGES
index 4b3fd59..cf361f1 100644
--- a/doc/CHANGES
+++ b/doc/CHANGES
@@ -1,4 +1,6 @@
-[cvs]
+attr-2.0.10 (28 August 2002)
+ - Add system call numbers for the m68k architecture
+ - Add missing "enabling" #define for the Alpha architecture
- Build updates to allow rpmbuild to build rpms (newer versions
of rpm require this, as rpm itself can no longer build rpms)
- Several section 3 man page corrections (minor)
diff --git a/libattr/syscalls.c b/libattr/syscalls.c
index 66361bf..12ed7f0 100644
--- a/libattr/syscalls.c
+++ b/libattr/syscalls.c
@@ -169,6 +169,7 @@
# define __NR_lremovexattr (__NR_Linux + 234)
# define __NR_fremovexattr (__NR_Linux + 235)
#elif defined (__alpha__)
+# define HAVE_XATTR_SYSCALLS 1
# define __NR_setxattr 382
# define __NR_lsetxattr 383
# define __NR_fsetxattr 384
@@ -181,6 +182,20 @@
# define __NR_removexattr 391
# define __NR_lremovexattr 392
# define __NR_fremovexattr 393
+#elif defined (__m68k__)
+# define HAVE_XATTR_SYSCALLS 1
+# define __NR_setxattr 223
+# define __NR_lsetxattr 224
+# define __NR_fsetxattr 225
+# define __NR_getxattr 226
+# define __NR_lgetxattr 227
+# define __NR_fgetxattr 228
+# define __NR_listxattr 229
+# define __NR_llistxattr 230
+# define __NR_flistxattr 231
+# define __NR_removexattr 232
+# define __NR_lremovexattr 233
+# define __NR_fremovexattr 234
#else
# warning "Extended attribute syscalls undefined for this architecture"
# define HAVE_XATTR_SYSCALLS 0