summaryrefslogtreecommitdiff
path: root/sysutils/nautilus
diff options
context:
space:
mode:
authordrochner <drochner>2007-11-12 20:52:52 +0000
committerdrochner <drochner>2007-11-12 20:52:52 +0000
commit82d7a2046037142ac7c5ec9c69bbcaf38b658b03 (patch)
tree688bde2a4faa9369b21c4896ac92fc78080d36d6 /sysutils/nautilus
parent16f6163bbe22d24bc5e43b8dcdeecf0b8b62c2fe (diff)
downloadpkgsrc-82d7a2046037142ac7c5ec9c69bbcaf38b658b03.tar.gz
Work around a missing check for sys/param.h in configure, to make it
build on NetBSD-3, fixes PR pkg/37292 by Gilles Gravier. Thanks to Gilles for testing the fix. (I'll report the missing configure check upstream.)
Diffstat (limited to 'sysutils/nautilus')
-rw-r--r--sysutils/nautilus/distinfo3
-rw-r--r--sysutils/nautilus/patches/patch-ak13
2 files changed, 15 insertions, 1 deletions
diff --git a/sysutils/nautilus/distinfo b/sysutils/nautilus/distinfo
index afd8c171107..43910fe4c5c 100644
--- a/sysutils/nautilus/distinfo
+++ b/sysutils/nautilus/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.32 2007/11/05 19:10:29 drochner Exp $
+$NetBSD: distinfo,v 1.33 2007/11/12 20:52:52 drochner Exp $
SHA1 (nautilus-2.20.0.tar.bz2) = f6a75a854728ef308e2721424a9638d228661b1d
RMD160 (nautilus-2.20.0.tar.bz2) = 9eeb18c886795ebbdd6dfc61ccddaee8eab81808
@@ -6,3 +6,4 @@ Size (nautilus-2.20.0.tar.bz2) = 4916284 bytes
SHA1 (patch-af) = 7b6d50ff805ed971ebe96d1d91a563a19220ebc7
SHA1 (patch-ai) = 3d460b4688f70628320ace3054718fa248c5602c
SHA1 (patch-aj) = d905ae52f35bd4fa11a9c10a0c7423aa5e04f8b9
+SHA1 (patch-ak) = e1548234ee9c96b0727710498e8f29a41a6df759
diff --git a/sysutils/nautilus/patches/patch-ak b/sysutils/nautilus/patches/patch-ak
new file mode 100644
index 00000000000..4837717675b
--- /dev/null
+++ b/sysutils/nautilus/patches/patch-ak
@@ -0,0 +1,13 @@
+$NetBSD: patch-ak,v 1.1 2007/11/12 20:52:52 drochner Exp $
+
+--- config.h.in.orig 2007-11-07 11:56:38.000000000 +0100
++++ config.h.in
+@@ -176,3 +176,8 @@
+
+ /* Define to empty if `const' does not conform to ANSI C. */
+ #undef const
++
++/* XXX work around missing check in configure */
++#if defined(__NetBSD__)
++#define HAVE_SYS_PARAM_H 1
++#endif