diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2005-11-15 23:43:05 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2005-11-15 23:43:05 +0000 |
commit | 4be190f7bdb1268b9facf29e31c36be65a4be432 (patch) | |
tree | ee617bf55e5a39a7c7088037bf7944ecd2a3420a | |
parent | 7bb69f20bc15a2bf380de3dc8be7f941a0bef522 (diff) |
New name and new location.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | README | 13 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | fuse_i.h | 4 | ||||
-rw-r--r-- | main.c | 2 | ||||
-rw-r--r-- | netfs.c | 4 | ||||
-rw-r--r-- | netnode.c | 2 | ||||
-rw-r--r-- | node.c | 2 |
8 files changed, 18 insertions, 17 deletions
@@ -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/" @@ -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]) @@ -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 @@ -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) */ @@ -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) @@ -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 */ @@ -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 ... */ |