mirror of
https://git.freebsd.org/ports.git
synced 2025-05-25 15:36:35 -04:00
- Add local patch to make FUSE support compile on FreeBSD [1]. - Force --enable-gnome-vfs when WITH_GNOMEVFS2 is set. Asked by: Sergei Mozhaisky <technix@mediana.net.ua> [1]
14 lines
329 B
C
14 lines
329 B
C
--- ntfsprogs/ntfsmount.c.orig Wed Nov 23 12:33:56 2005
|
|
+++ ntfsprogs/ntfsmount.c Wed Nov 23 12:32:15 2005
|
|
@@ -228,7 +228,11 @@
|
|
size = 0;
|
|
sfs->f_ffree = size;
|
|
/* Maximum length of filenames. */
|
|
+#ifdef __FreeBSD__
|
|
+ sfs->f_namemax = NTFS_MAX_NAME_LEN;
|
|
+#else
|
|
sfs->f_namelen = NTFS_MAX_NAME_LEN;
|
|
+#endif
|
|
return 0;
|
|
}
|
|
|