summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrochner <drochner@pkgsrc.org>2007-11-12 20:52:52 +0000
committerdrochner <drochner@pkgsrc.org>2007-11-12 20:52:52 +0000
commitc54c485b17d125908ca9edef6080206b9b29bf1e (patch)
tree688bde2a4faa9369b21c4896ac92fc78080d36d6
parent949b35714546af0190c455362286b10110f77e96 (diff)
downloadpkgsrc-c54c485b17d125908ca9edef6080206b9b29bf1e.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.)
-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