summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authormarkd <markd@pkgsrc.org>2014-11-16 18:28:52 +0000
committermarkd <markd@pkgsrc.org>2014-11-16 18:28:52 +0000
commit0518bec5008be86acc2f3318e09d333a10d8776c (patch)
treec6384652834a739d950fb95e68443b39242ebd95 /sysutils
parent17cce18448e8df3f18a98b9eeb613c3b6fb5f9d2 (diff)
downloadpkgsrc-0518bec5008be86acc2f3318e09d333a10d8776c.tar.gz
Commit missing patch.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/baloo/patches/patch-src__file__lib__baloo_xattr_p.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/sysutils/baloo/patches/patch-src__file__lib__baloo_xattr_p.h b/sysutils/baloo/patches/patch-src__file__lib__baloo_xattr_p.h
new file mode 100644
index 00000000000..ddc383af4a7
--- /dev/null
+++ b/sysutils/baloo/patches/patch-src__file__lib__baloo_xattr_p.h
@@ -0,0 +1,13 @@
+$NetBSD: patch-src__file__lib__baloo_xattr_p.h,v 1.1 2014/11/16 18:28:52 markd Exp $
+
+--- src/file/lib/baloo_xattr_p.h.orig 2014-11-06 12:03:28.000000000 +0000
++++ src/file/lib/baloo_xattr_p.h
+@@ -117,7 +117,7 @@ inline int baloo_removexattr(const QStri
+ #elif defined(Q_OS_MAC)
+ return removexattr(encodedPath, attributeName, XATTR_NOFOLLOW );
+ #elif defined(Q_OS_FREEBSD) || defined(Q_OS_NETBSD)
+- return removexattr (encodedPath, attributeName);
++ return extattr_delete_file (encodedPath, EXTATTR_NAMESPACE_USER, attributeName);
+ #else
+ return -1;
+ #endif