summaryrefslogtreecommitdiff
path: root/net/nasd/patches/patch-bd
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-bd
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-bd')
-rw-r--r--net/nasd/patches/patch-bd28
1 files changed, 28 insertions, 0 deletions
diff --git a/net/nasd/patches/patch-bd b/net/nasd/patches/patch-bd
new file mode 100644
index 00000000000..fdce9031a22
--- /dev/null
+++ b/net/nasd/patches/patch-bd
@@ -0,0 +1,28 @@
+$NetBSD: patch-bd,v 1.1.1.1 2005/05/04 08:56:50 agc Exp $
+
+Index: include/nasd/nasd_getopt.h
+===================================================================
+RCS file: /usr/cvsroot/nasd/nasd-1.3/include/nasd/nasd_getopt.h,v
+retrieving revision 1.1.1.1
+retrieving revision 1.2
+diff -u -r1.1.1.1 -r1.2
+--- include/nasd/nasd_getopt.h 21 Mar 2005 08:52:02 -0000 1.1.1.1
++++ include/nasd/nasd_getopt.h 21 Mar 2005 17:07:28 -0000 1.2
+@@ -32,13 +32,13 @@
+
+ #include <stdlib.h>
+
+-#if !defined(SOLARIS) && !defined(FREEBSD)
++#if !defined(SOLARIS) && !defined(FREEBSD) && !defined(NETBSD)
+ #include <getopt.h>
+-#endif /* !SOLARIS && !FREEBSD */
++#endif /* !SOLARIS && !FREEBSD && !NETBSD */
+
+-#ifdef FREEBSD
++#if defined(FREEBSD) || defined(NETBSD)
+ #include <unistd.h>
+-#endif /* FREEBSD */
++#endif /* FREEBSD || NETBSD */
+
+ extern char *nasd_optarg;
+ extern int nasd_optind;