-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Statfs support - FUSE 2.6 API - Single threaded main loop - Write support - mkdir/rmdir
- Loading branch information
sborrill
committed
Apr 29, 2008
1 parent
56f5488
commit cce127c
Showing
3 changed files
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
$NetBSD: distinfo,v 1.1.1.1 2007/05/02 19:43:40 sborrill Exp $ | ||
$NetBSD: distinfo,v 1.2 2008/04/29 09:39:17 sborrill Exp $ | ||
|
||
SHA1 (gphotofs-0.3.tar.bz2) = 24b6a66f89da6f53bf4240a91003841c2ff41fc5 | ||
RMD160 (gphotofs-0.3.tar.bz2) = 34fc6c5019319c57fcfc8c53938fccbf6cede18d | ||
Size (gphotofs-0.3.tar.bz2) = 76186 bytes | ||
SHA1 (gphotofs-0.4.0.tar.bz2) = b580af6059b514185cd98b3961701023c18e7430 | ||
RMD160 (gphotofs-0.4.0.tar.bz2) = 1b752284297fcbb74e252ae988682a8486399b1b | ||
Size (gphotofs-0.4.0.tar.bz2) = 267708 bytes | ||
SHA1 (patch-aa) = ab598c3c3dd5d1ca568d3a7a433ac8f508c8a25f | ||
SHA1 (patch-ab) = 9e36861c26ddbac5bc69a2559a20758408f5d0d7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$NetBSD: patch-ab,v 1.1 2008/04/29 09:39:17 sborrill Exp $ | ||
|
||
--- gphotofs.c.orig 2008-04-25 00:21:37.000000000 +0100 | ||
+++ gphotofs.c 2008-04-25 00:22:57.000000000 +0100 | ||
@@ -26,6 +26,10 @@ | ||
#include <fcntl.h> | ||
#include <sys/time.h> | ||
|
||
+#ifdef HAVE_LOCALE_H | ||
+#include <locale.h> | ||
+#endif | ||
+ | ||
/* | ||
* Static variables set by command line arguments. | ||
*/ |