summaryrefslogtreecommitdiff
path: root/sysutils/amanda-server
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2001-03-16 11:19:28 +0000
committertron <tron@pkgsrc.org>2001-03-16 11:19:28 +0000
commit38b10f11a3e3649f5bb5c6db851e10a5a67812b0 (patch)
treee6abebe46d48f62664d54b6ef2ccb272b2eeee40 /sysutils/amanda-server
parentd4fec39926f19171c477ea5c9202a4d0b928d7ca (diff)
downloadpkgsrc-38b10f11a3e3649f5bb5c6db851e10a5a67812b0.tar.gz
Use patches from "amanda-common" package to make this build under
NetBSD-current.
Diffstat (limited to 'sysutils/amanda-server')
-rw-r--r--sysutils/amanda-server/files/patch-sum28
-rw-r--r--sysutils/amanda-server/patches/patch-ba13
-rw-r--r--sysutils/amanda-server/patches/patch-bb13
3 files changed, 41 insertions, 13 deletions
diff --git a/sysutils/amanda-server/files/patch-sum b/sysutils/amanda-server/files/patch-sum
index 857d4514add..ef5aaf568ff 100644
--- a/sysutils/amanda-server/files/patch-sum
+++ b/sysutils/amanda-server/files/patch-sum
@@ -1,14 +1,16 @@
-$NetBSD: patch-sum,v 1.5 2001/01/16 21:59:39 cjones Exp $
+$NetBSD: patch-sum,v 1.6 2001/03/16 11:19:28 tron Exp $
-MD5 (patch-aa) = 48523a17fe624686607217c437d552cc
-MD5 (patch-ab) = e2b0eedd04ddf03fdcd8be5a6c7a732b
-MD5 (patch-ac) = 22c485e47a3fa49130c5ce86727b274d
-MD5 (patch-ad) = c56ed041983485b354fb83ef6d08522e
-MD5 (patch-ae) = ccb0f0bf0185e2d9baa52c25ee19b279
-MD5 (patch-af) = 0b10a21151b51818546ca424e39147c8
-MD5 (patch-ag) = b7df4171bf9a4daa9e7e4bd024857b10
-MD5 (patch-ah) = 1b32587420a7d591809737bbad9cde45
-MD5 (patch-ai) = 67a08795eb19530e38271814481321b2
-MD5 (patch-aj) = 1da69289764d62de86a00d1de72c34a3
-MD5 (patch-ak) = 79970eda2347d7215ea198c356a7b6e1
-MD5 (patch-al) = ecc9e6eff9e4f1c5313a0810b5651b9e
+SHA1 (patch-aa) = a9ffd6acad2c01da0f4707575ec311a5280bf48d
+SHA1 (patch-ab) = 3553c0b4b86f05bd8921304c2862b23b63afe89a
+SHA1 (patch-ac) = c353f92d692813b81858d55cf55fa28a9ee98355
+SHA1 (patch-ad) = 8eaa759777c575cacd7cefb51dcf5e09da9a1c68
+SHA1 (patch-ae) = 0bb989efd72a3a625feb54f433c079812e707eee
+SHA1 (patch-af) = af41269882c8dfdb45bc177a45aa86122443d8df
+SHA1 (patch-ag) = 4397a7c6bde844d80781e1ffd8fb81c289e92fe0
+SHA1 (patch-ah) = ba156adca49704c23d04601c98ed14f3e0b206c1
+SHA1 (patch-ai) = 8dc0d944da5c246dbed0e3cdf98f93277371c194
+SHA1 (patch-aj) = 912ec89bf8cca2f602a90621dfd818d21145f02b
+SHA1 (patch-ak) = d5036ee96d05dce8091209130da1747f0d6e5867
+SHA1 (patch-al) = fe84955356288c4c05b67c77504484e7303e0ed5
+SHA1 (patch-ba) = 7c2b47e1239bc2d0e31f8336a85ea058d8fb07b4
+SHA1 (patch-bb) = c8c91b848e669f2ccd3a753cfa7aba64e47d2166
diff --git a/sysutils/amanda-server/patches/patch-ba b/sysutils/amanda-server/patches/patch-ba
new file mode 100644
index 00000000000..bbd7226500f
--- /dev/null
+++ b/sysutils/amanda-server/patches/patch-ba
@@ -0,0 +1,13 @@
+$NetBSD: patch-ba,v 1.1 2001/03/16 11:19:29 tron Exp $
+
+--- common-src/token.h.orig Thu Mar 15 20:30:31 2001
++++ common-src/token.h Thu Mar 15 20:30:43 2001
+@@ -42,7 +42,7 @@
+ extern char *quotef P((char *sep, char *format, ...));
+ extern char *quote P((char *sep, char *str));
+ extern char *rxquote P((char *str));
+-extern char *shquote P((char *str));
++extern char *am_shquote P((char *str));
+ extern int table_lookup P((table_t *table, char *str));
+ extern char *table_lookup_r P((table_t *table, int val));
+
diff --git a/sysutils/amanda-server/patches/patch-bb b/sysutils/amanda-server/patches/patch-bb
new file mode 100644
index 00000000000..6e099de9967
--- /dev/null
+++ b/sysutils/amanda-server/patches/patch-bb
@@ -0,0 +1,13 @@
+$NetBSD: patch-bb,v 1.1 2001/03/16 11:19:29 tron Exp $
+
+--- common-src/token.c.orig Thu Mar 15 20:30:23 2001
++++ common-src/token.c Thu Mar 15 20:30:56 2001
+@@ -295,7 +295,7 @@
+ }
+
+ /* Quote a string so that it can be safely passed to a shell */
+-char *shquote(str)
++char *am_shquote(str)
+ char *str; /* the string to quote */
+ {
+ char *pi, *po;