summaryrefslogtreecommitdiff
path: root/net/nasd/patches/patch-ah
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2005-05-04 08:56:49 +0000
committeragc <agc@pkgsrc.org>2005-05-04 08:56:49 +0000
commit4b619e493a636555eae558c968bd885b1cadb9b3 (patch)
treee607db99d120de7cfd5fb548d2d3631908b65a48 /net/nasd/patches/patch-ah
parente04b9022adaf2ab6e7c8d4497d371484d7a772d8 (diff)
downloadpkgsrc-4b619e493a636555eae558c968bd885b1cadb9b3.tar.gz
Initial import of nasd-1.3, a prototype storage implementation, from CMU.
The original tar file has trailing base64 checksums, so I have repackaged the tar file for just now. This is release 1.3 of the Parallel Data Laboratory NASD software prototype. The release includes the NASD drive prototype, the NASD-NFS filemanager, simple client APIs, a regression-testing suite, sample programs, a snapshot of Cheops (which is one implementation of aggregation over multiple NASDs), and some basic documentation.
Diffstat (limited to 'net/nasd/patches/patch-ah')
-rw-r--r--net/nasd/patches/patch-ah57
1 files changed, 57 insertions, 0 deletions
diff --git a/net/nasd/patches/patch-ah b/net/nasd/patches/patch-ah
new file mode 100644
index 00000000000..77d4ab1701d
--- /dev/null
+++ b/net/nasd/patches/patch-ah
@@ -0,0 +1,57 @@
+$NetBSD: patch-ah,v 1.1.1.1 2005/05/04 08:56:49 agc Exp $
+
+Index: common/netbsd/Imakefile
+===================================================================
+RCS file: common/netbsd/Imakefile
+diff -N common/netbsd/Imakefile
+--- /dev/null 1 Jan 1970 00:00:00 -0000
++++ common/netbsd/Imakefile 21 Mar 2005 17:07:21 -0000 1.2
+@@ -0,0 +1,48 @@
++/*
++ * Imakefile
++ *
++ * Author: Marc Unangst
++ */
++/*
++ * Copyright (c) of Carnegie Mellon University, 1998,1999.
++ *
++ * Permission to reproduce, use, and prepare derivative works of
++ * this software for internal use is granted provided the copyright
++ * and "No Warranty" statements are included with all reproductions
++ * and derivative works. This software may also be redistributed
++ * without charge provided that the copyright and "No Warranty"
++ * statements are included in all redistributions.
++ *
++ * NO WARRANTY. THIS SOFTWARE IS FURNISHED ON AN "AS IS" BASIS.
++ * CARNEGIE MELLON UNIVERSITY MAKES NO WARRANTIES OF ANY KIND, EITHER
++ * EXPRESSED OR IMPLIED AS TO THE MATTER INCLUDING, BUT NOT LIMITED
++ * TO: WARRANTY OF FITNESS FOR PURPOSE OR MERCHANTABILITY, EXCLUSIVITY
++ * OF RESULTS OR RESULTS OBTAINED FROM USE OF THIS SOFTWARE. CARNEGIE
++ * MELLON UNIVERSITY DOES NOT MAKE ANY WARRANTY OF ANY KIND WITH RESPECT
++ * TO FREEDOM FROM PATENT, TRADEMARK, OR COPYRIGHT INFRINGEMENT.
++ */
++
++#include "NASD.tmpl"
++
++#if defined(NetBSDArchitecture)
++
++SRCS = \
++ nasd_netbsd_basic.c \
++ nasd_netbsd_lseek.c \
++ nasd_netbsd_srv.c
++
++OBJS = \
++ nasd_netbsd_basic.o \
++ nasd_netbsd_lseek.o \
++ nasd_netbsd_srv.o
++
++all:: ${OBJS}
++
++NASD_Depend()
++
++#endif /* NetBSDArchitecture */
++
++/*
++ * Don't put anything after this
++ */
++#include "NASD.trailer"