summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2005-11-15 23:43:05 +0000
committerThomas Schwinge <tschwinge@gnu.org>2005-11-15 23:43:05 +0000
commit4be190f7bdb1268b9facf29e31c36be65a4be432 (patch)
treeee617bf55e5a39a7c7088037bf7944ecd2a3420a
parent7bb69f20bc15a2bf380de3dc8be7f941a0bef522 (diff)
New name and new location.
-rw-r--r--ChangeLog2
-rw-r--r--README13
-rw-r--r--configure.ac6
-rw-r--r--fuse_i.h4
-rw-r--r--main.c2
-rw-r--r--netfs.c4
-rw-r--r--netnode.c2
-rw-r--r--node.c2
8 files changed, 18 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 6f988b0c9..a0322e70d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,4 +2,4 @@
# ChangeLog is more or less available through CVS revision history
# there is no separate file telling what was changed line by line ...
-exec lynx "http://cvs.berlios.de/cgi-bin/viewcvs.cgi/cvsfs4hurd/fuse4hurd/"
+exec lynx "http://savannah.nongnu.org/cgi-bin/viewcvs.cgi/hurdextras/libfuse/"
diff --git a/README b/README
index f531ed638..f5e7b1f99 100644
--- a/README
+++ b/README
@@ -1,8 +1,8 @@
-fuse4hurd - imitation of Linux's libfuse for the Hurd
+libfuse - imitation of Linux's libfuse for the Hurd
W H A T I S I T ?
- fuse4hurd is a library intended for the GNU Hurd trying to imitate the
+ libfuse is a library intended for the GNU Hurd trying to imitate the
API of the fuse library, available from http://fuse.sourceforge.net, for
Linux. It's based on Hurd's libnetfs and tries to bring all the fuse based
virtual filesystems over to the Hurd. However this results in being quite
@@ -10,15 +10,16 @@ W H A T I S I T ?
H O W T O U S E I T ?
- simply install fuse4hurd, which will copy a libfuse.{so,la,a} to your
+ simply install libfuse, which will copy a libfuse.{so,la,a} to your
/local/lib directory. Then simply try to build the fuse-based translator
as you'd like on Linux. In case it works, please tell - if not, you might
want to tell as well :-)
-Have fun with fuse4hurd
- ... and let me hear any suggestions, send patches, etc.
+Have fun with libfuse
+ ... and let us hear any suggestions, send patches, etc.
+ You can contact us at <hurdextras-hackers@nongnu.org>.
Stefan Siegl <ssiegl@gmx.de>
-$Id: README,v 1.2 2005/04/02 16:35:55 stesie Exp $
+$Id: README,v 1.3 2005/11/15 23:43:05 tschwinge Exp $
diff --git a/configure.ac b/configure.ac
index 9ccda605d..7dca028a6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,13 +4,13 @@
# Copyright (C) 2005 by Stefan Siegl <ssiegl@gmx.de>, Germany
AC_PREREQ(2.59)
-AC_INIT(fuse4hurd, 0.1, ssiegl@gmx.de)
-AC_REVISION($Revision: 1.2 $)
+AC_INIT(libfuse, 0.1, hurdextras-hackers@nongnu.org)
+AC_REVISION($Revision: 1.3 $)
AC_CONFIG_SRCDIR(main.c)
AM_CONFIG_HEADER(config.h)
# Initialize automake
-AM_INIT_AUTOMAKE(fuse4hurd, 0.1)
+AM_INIT_AUTOMAKE(libfuse, 0.1)
# Checks for programs.
m4_ifdef([LT_INIT], [LT_INIT], [AC_PROG_LIBTOOL])
diff --git a/fuse_i.h b/fuse_i.h
index da18c64c3..8f0bde90e 100644
--- a/fuse_i.h
+++ b/fuse_i.h
@@ -6,9 +6,9 @@
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
- * file that comes with the fuse4hurd distribution.
+ * file that comes with the libfuse distribution.
*
- * fuse4hurd internals ...
+ * libfuse internals ...
*/
#ifndef FUSE_INTERNAL_H
diff --git a/main.c b/main.c
index 818ed259f..3ee7afc79 100644
--- a/main.c
+++ b/main.c
@@ -6,7 +6,7 @@
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
- * file that comes with the fuse4hurd distribution.
+ * file that comes with the libfuse distribution.
*
* translator startup code (and argp handling)
*/
diff --git a/netfs.c b/netfs.c
index 4c6187faf..544489780 100644
--- a/netfs.c
+++ b/netfs.c
@@ -6,7 +6,7 @@
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
- * file that comes with the fuse4hurd distribution.
+ * file that comes with the libfuse distribution.
*
* callback functions for libnetfs
*/
@@ -384,7 +384,7 @@ error_t netfs_attempt_mkfile (struct iouser *user, struct node *dir,
do
{
- snprintf(name, sizeof(name), ".fuse4hurd-%06d", num ++);
+ snprintf(name, sizeof(name), ".libfuse-%06d", num ++);
err = netfs_attempt_create_file(user, dir, name, mode, node);
if(err == EEXIST)
diff --git a/netnode.c b/netnode.c
index 21de2010b..9727097c1 100644
--- a/netnode.c
+++ b/netnode.c
@@ -6,7 +6,7 @@
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
- * file that comes with the fuse4hurd distribution.
+ * file that comes with the libfuse distribution.
*
* netnode handling
*/
diff --git a/node.c b/node.c
index bb7af5a48..a09cc5c6b 100644
--- a/node.c
+++ b/node.c
@@ -6,7 +6,7 @@
* This is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Publice License,
* version 2 or any later. The license is contained in the COPYING
- * file that comes with the fuse4hurd distribution.
+ * file that comes with the libfuse distribution.
*
* create (and care for) nodes ...
*/