summaryrefslogtreecommitdiff
path: root/sysutils/amanda-common
diff options
context:
space:
mode:
authormjl <mjl@pkgsrc.org>2001-03-15 20:08:46 +0000
committermjl <mjl@pkgsrc.org>2001-03-15 20:08:46 +0000
commit7d18d3bbb0a34b2d7a009801bb47efcd389080dd (patch)
treea394ae956d520001686347fdd641cdc94f60e1bf /sysutils/amanda-common
parent9de97ea3528ed75e3e5c886c1db290e08a1f513f (diff)
downloadpkgsrc-7d18d3bbb0a34b2d7a009801bb47efcd389080dd.tar.gz
Make this compile under -current, amanda has a function called shquote()...
Diffstat (limited to 'sysutils/amanda-common')
-rw-r--r--sysutils/amanda-common/files/patch-sum12
-rw-r--r--sysutils/amanda-common/patches/patch-ba13
-rw-r--r--sysutils/amanda-common/patches/patch-bb13
3 files changed, 33 insertions, 5 deletions
diff --git a/sysutils/amanda-common/files/patch-sum b/sysutils/amanda-common/files/patch-sum
index ff7f5c0b01f..47ffef5c7f3 100644
--- a/sysutils/amanda-common/files/patch-sum
+++ b/sysutils/amanda-common/files/patch-sum
@@ -1,6 +1,8 @@
-$NetBSD: patch-sum,v 1.5 2001/01/16 21:59:31 cjones Exp $
+$NetBSD: patch-sum,v 1.6 2001/03/15 20:08:46 mjl Exp $
-MD5 (patch-aa) = 554ec557cdcddb2a17ba268024226aac
-MD5 (patch-ab) = 5b1e0835db60d0e8e3d89a18febf26f0
-MD5 (patch-ac) = 8cb1380da436abe6dfb5f34066b01994
-MD5 (patch-ad) = 78cec9042f6247b4f4eb8667e32fb1ea
+SHA1 (patch-aa) = d6dfe2238812ca0ae6e4b7ba13497df0fdffd7d6
+SHA1 (patch-ab) = 3b715c2a14323662177373fa4c5c2de821fc63dc
+SHA1 (patch-ac) = e3c8bb37d09643fe2db857023e2a22d78fb5b330
+SHA1 (patch-ad) = 510e650c9e9976323b1d27a7895cee6281b89dcd
+SHA1 (patch-ba) = 7c2b47e1239bc2d0e31f8336a85ea058d8fb07b4
+SHA1 (patch-bb) = c8c91b848e669f2ccd3a753cfa7aba64e47d2166
diff --git a/sysutils/amanda-common/patches/patch-ba b/sysutils/amanda-common/patches/patch-ba
new file mode 100644
index 00000000000..9cd5764a8de
--- /dev/null
+++ b/sysutils/amanda-common/patches/patch-ba
@@ -0,0 +1,13 @@
+$NetBSD: patch-ba,v 1.1 2001/03/15 20:08:46 mjl 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-common/patches/patch-bb b/sysutils/amanda-common/patches/patch-bb
new file mode 100644
index 00000000000..51635532dd7
--- /dev/null
+++ b/sysutils/amanda-common/patches/patch-bb
@@ -0,0 +1,13 @@
+$NetBSD: patch-bb,v 1.1 2001/03/15 20:08:46 mjl 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;