summaryrefslogtreecommitdiff
path: root/filesystems/fuse-afpfs-ng/patches
diff options
context:
space:
mode:
authoradam <adam>2007-11-03 13:04:40 +0000
committeradam <adam>2007-11-03 13:04:40 +0000
commit64f2c083e85e420e237e5646180f434e09cdc9ee (patch)
treeb0efc8ebf6c97bcffc67a952eeed4e37d69c1aec /filesystems/fuse-afpfs-ng/patches
parenta211514175e0f6027185ead0dbf1940e4ac6e453 (diff)
downloadpkgsrc-64f2c083e85e420e237e5646180f434e09cdc9ee.tar.gz
Changes 0.4.3:
- UTF8 internationalization of filenames, volumes and servers - proper uid/gid mapping to enable environments with a common or different user directory - DHX2 UAM from Derrik Pates - fixes to deal with the Apple Airport Extreme quirks - fixes to deal with netatalk quirks - improved status output for debugging - various small bug fixes
Diffstat (limited to 'filesystems/fuse-afpfs-ng/patches')
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-aa14
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ab14
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ac14
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ad14
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ae51
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-af13
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ag8
-rw-r--r--filesystems/fuse-afpfs-ng/patches/patch-ah10
8 files changed, 8 insertions, 130 deletions
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-aa b/filesystems/fuse-afpfs-ng/patches/patch-aa
deleted file mode 100644
index 5eb86559227..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-aa
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- commands.c 2007/07/09 17:42:19 1.1
-+++ commands.c 2007/07/09 17:43:06
-@@ -6,7 +6,9 @@
- */
-
- #include <fuse.h>
-+#ifdef __linux__
- #include <fuse/fuse_opt.h>
-+#endif
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ab b/filesystems/fuse-afpfs-ng/patches/patch-ab
deleted file mode 100644
index 3ab3be3f614..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-ab
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ab,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- daemon.c 2007/07/09 18:25:27 1.1
-+++ daemon.c 2007/07/09 18:26:36
-@@ -6,7 +6,9 @@
- */
-
- #include <fuse.h>
-+#ifdef __linux__
- #include <fuse/fuse_opt.h>
-+#endif
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ac b/filesystems/fuse-afpfs-ng/patches/patch-ac
deleted file mode 100644
index 2bc21cf1341..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-ac
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ac,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- meta.c 2007/07/09 18:25:27 1.1
-+++ meta.c 2007/07/09 18:26:36
-@@ -9,7 +9,9 @@
- */
-
- #include <fuse.h>
-+#ifdef __linux__
- #include <fuse/fuse_opt.h>
-+#endif
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ad b/filesystems/fuse-afpfs-ng/patches/patch-ad
deleted file mode 100644
index 1b0a321013a..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-ad
+++ /dev/null
@@ -1,14 +0,0 @@
-$NetBSD: patch-ad,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- volinfo.c 2007/07/09 18:25:27 1.1
-+++ volinfo.c 2007/07/09 18:26:36
-@@ -10,7 +10,9 @@
- */
-
- #include <fuse.h>
-+#ifdef __linux__
- #include <fuse/fuse_opt.h>
-+#endif
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ae b/filesystems/fuse-afpfs-ng/patches/patch-ae
deleted file mode 100644
index 27bd86972fe..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-ae
+++ /dev/null
@@ -1,51 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- fuse_int.c 2007/07/09 18:28:21 1.1
-+++ fuse_int.c 2007/07/09 18:35:16
-@@ -21,7 +21,11 @@
- #include <stdio.h>
- #include <string.h>
- #include <errno.h>
-+#ifdef __linux__
- #include <asm/fcntl.h>
-+#else
-+#include <fcntl.h>
-+#endif
-
- #include <utime.h>
- #include <stdlib.h>
-@@ -270,8 +274,13 @@
- fp.unixprivs.uid,&stbuf->st_uid,
- fp.unixprivs.gid,&stbuf->st_gid)) return -EIO;
-
-+#ifdef __linux__
- stbuf->st_ctim.tv_sec=fp.creation_date;
- stbuf->st_mtim.tv_sec=fp.modification_date;
-+#else
-+ stbuf->st_ctime=fp.creation_date;
-+ stbuf->st_mtime=fp.modification_date;
-+#endif
-
- if (resource==AFP_RESOURCE_TYPE_PARENT2) {
- stbuf->st_mode |= S_IFDIR;
-@@ -890,7 +899,10 @@
- }
- }
-
-- if ((fi->flags & O_LARGEFILE) &&
-+ if (
-+#ifdef __linux__
-+ (fi->flags & O_LARGEFILE) &&
-+#endif
- (volume->server->using_version->av_number<30)) {
- switch(get_directory_entry(volume,fp->basename,dirid,
- kFPParentDirIDBit|kFPNodeIDBit|
-@@ -2039,7 +2051,7 @@
- {
- global_volume=vol;
-
--#if FUSE_VERSION < 26
-+#if FUSE_USE_VERSION < 26
- return fuse_main(fuseargc, fuseargv, &afp_oper);
- #else
- return fuse_main(fuseargc, fuseargv, &afp_oper,(void *) vol);
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-af b/filesystems/fuse-afpfs-ng/patches/patch-af
index e3e453e4dbe..38a9f85eb26 100644
--- a/filesystems/fuse-afpfs-ng/patches/patch-af
+++ b/filesystems/fuse-afpfs-ng/patches/patch-af
@@ -1,17 +1,12 @@
-$NetBSD: patch-af,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
+$NetBSD: patch-af,v 1.2 2007/11/03 13:04:43 adam Exp $
---- resource.c 2007/07/09 18:36:19 1.1
-+++ resource.c 2007/07/09 18:37:11
-@@ -1,7 +1,12 @@
+--- resource.c.orig 2007-09-04 06:27:41.000000000 +0200
++++ resource.c
+@@ -1,5 +1,7 @@
- #include <strings.h>
#include <string.h>
-+#ifdef __linux__
- #include <linux/limits.h>
-+#else
+#include <sys/types.h>
+#include <sys/param.h>
-+#endif
#include "afp.h"
#define appledouble ".AppleDouble"
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ag b/filesystems/fuse-afpfs-ng/patches/patch-ag
index 796bdf4e50e..e6fc9f2114b 100644
--- a/filesystems/fuse-afpfs-ng/patches/patch-ag
+++ b/filesystems/fuse-afpfs-ng/patches/patch-ag
@@ -1,8 +1,8 @@
-$NetBSD: patch-ag,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
+$NetBSD: patch-ag,v 1.2 2007/11/03 13:04:43 adam Exp $
---- Makefile.in 2007/07/09 18:46:36 1.1
-+++ Makefile.in 2007/07/09 18:48:15
-@@ -139,7 +139,7 @@
+--- Makefile.in.orig 2007-10-08 04:27:06.000000000 +0200
++++ Makefile.in
+@@ -153,7 +153,7 @@ LIBGCRYPT_CONFIG = @LIBGCRYPT_CONFIG@
LIBGCRYPT_LIBS = @LIBGCRYPT_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
diff --git a/filesystems/fuse-afpfs-ng/patches/patch-ah b/filesystems/fuse-afpfs-ng/patches/patch-ah
deleted file mode 100644
index b304bc4a9c0..00000000000
--- a/filesystems/fuse-afpfs-ng/patches/patch-ah
+++ /dev/null
@@ -1,10 +0,0 @@
-$NetBSD: patch-ah,v 1.1.1.1 2007/07/09 19:03:22 agc Exp $
-
---- client.c 2007/07/09 18:56:20 1.1
-+++ client.c 2007/07/09 18:56:45
-@@ -1,4 +1,5 @@
- #include <sys/types.h>
-+#include <sys/param.h>
- #include <sys/socket.h>
- #include <sys/stat.h>
- #include <strings.h>