summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorwiz <wiz>2002-08-05 15:54:56 +0000
committerwiz <wiz>2002-08-05 15:54:56 +0000
commit614e78f3f1082b2310e1be317315b82d3323a1da (patch)
tree2e936d044106384d571cb2feb15c2544186d4150 /pkgtools
parentd551e41ab5d59a74993b97eca05a4e85a7a9838d (diff)
downloadpkgsrc-614e78f3f1082b2310e1be317315b82d3323a1da.tar.gz
Make compile again on 1.4.3. [Does not compile on 1.4.2 due to missing
strlcpy.]
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/distinfo5
-rw-r--r--pkgtools/pkg_install/patches/patch-aj15
2 files changed, 18 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/distinfo b/pkgtools/pkg_install/distinfo
index 53c09d88c1e..de8311da516 100644
--- a/pkgtools/pkg_install/distinfo
+++ b/pkgtools/pkg_install/distinfo
@@ -1,13 +1,14 @@
-$NetBSD: distinfo,v 1.15 2002/08/05 15:11:35 fredb Exp $
+$NetBSD: distinfo,v 1.16 2002/08/05 15:54:56 wiz Exp $
SHA1 (pkg_install-20020723.tar.gz) = c16763363a8ff4341c866d50e40dfa2639288009
Size (pkg_install-20020723.tar.gz) = 81502 bytes
SHA1 (patch-aa) = 3a61d2bbc3d5f046c5e8325066a0d620637920eb
SHA1 (patch-ab) = 0b5effbb41b34f96877d3f9494d6cf5054795414
SHA1 (patch-ac) = fb24ffdc0fbf4ca85d588afcfac39a960b763706
-SHA1 (patch-ad) = a4dbed4ec4be7f008064bc50f17f20aacc4cf8b5
+SHA1 (patch-ad) = 2221f30c1fa2b770184a3404e2c446b24560a859
SHA1 (patch-ae) = ea360800e97e0cfdaf7cfe5790f70d8145aa0e23
SHA1 (patch-af) = b1d9ce8d3c3e592a67db7ac9676a72317a1485c5
SHA1 (patch-ag) = e30435f0a626a893934c725c605486a145e27690
SHA1 (patch-ah) = ae0cee4e6f6efd740fc0d4288f8f71dd0039a913
SHA1 (patch-ai) = fc16e812952f20a2db10e6b947521b5d18a7b6ae
+SHA1 (patch-aj) = 7d220018c533849f7d9b7e68828f89bbe67ec68c
diff --git a/pkgtools/pkg_install/patches/patch-aj b/pkgtools/pkg_install/patches/patch-aj
new file mode 100644
index 00000000000..cd042507700
--- /dev/null
+++ b/pkgtools/pkg_install/patches/patch-aj
@@ -0,0 +1,15 @@
+$NetBSD: patch-aj,v 1.1 2002/08/05 15:54:57 wiz Exp $
+
+--- lib/path.h Fri Jul 19 12:04:41 2002
++++ lib/path.h Mon Aug 5 08:43:32 2002
+@@ -36,3 +36,10 @@
+ void path_create(const char *);
+ void path_free(void);
+ void path_setenv(const char *);
++
++#ifndef TAILQ_FOREACH
++#define TAILQ_FOREACH(var, head, field) \
++ for ((var) = ((head)->tqh_first); \
++ (var); \
++ (var) = ((var)->field.tqe_next))
++#endif