summaryrefslogtreecommitdiff
path: root/www/c-icap
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2017-02-09 00:17:07 +0000
committerjoerg <joerg@pkgsrc.org>2017-02-09 00:17:07 +0000
commit70e70c153b586c1b8ee2d7f242d72bf5c21c9f87 (patch)
treed483b803606e8804de89811f217ecb0320242121 /www/c-icap
parente9df89e4bbd1b71b2c057cee491bff33f5a8d2f1 (diff)
downloadpkgsrc-70e70c153b586c1b8ee2d7f242d72bf5c21c9f87.tar.gz
NetBSD needs -lrt for shm_open.
Diffstat (limited to 'www/c-icap')
-rw-r--r--www/c-icap/distinfo4
-rw-r--r--www/c-icap/patches/patch-configure12
2 files changed, 13 insertions, 3 deletions
diff --git a/www/c-icap/distinfo b/www/c-icap/distinfo
index c59ff01d5c2..e714b8b9eea 100644
--- a/www/c-icap/distinfo
+++ b/www/c-icap/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2017/02/06 14:14:48 adam Exp $
+$NetBSD: distinfo,v 1.10 2017/02/09 00:17:07 joerg Exp $
SHA1 (c_icap-0.4.4.tar.gz) = c2cf919215812a40053652f9501c1b8d3c40c684
RMD160 (c_icap-0.4.4.tar.gz) = a69c5832951db9c424a3ea748d4512ec1ce313a2
@@ -6,4 +6,4 @@ SHA512 (c_icap-0.4.4.tar.gz) = b98ddbe6da24d3a21d98e1acb72b34f65e115cf98c34a01a1
Size (c_icap-0.4.4.tar.gz) = 636947 bytes
SHA1 (patch-Makefile.in) = 103129c1bd438885290c3712c53b8e9d3cc3b1ab
SHA1 (patch-cfg__param.c) = 005d22a2d0cc0f64b38a14477b1d21c28e361018
-SHA1 (patch-configure) = d7ed5a07c97b123a42af91df3efcd99c39a74a6b
+SHA1 (patch-configure) = 0a4e857ef4f6277ba27d3ec33b2797978932f3e5
diff --git a/www/c-icap/patches/patch-configure b/www/c-icap/patches/patch-configure
index 311a8dbb1e5..969118d4f24 100644
--- a/www/c-icap/patches/patch-configure
+++ b/www/c-icap/patches/patch-configure
@@ -1,6 +1,7 @@
-$NetBSD: patch-configure,v 1.6 2017/02/06 14:14:48 adam Exp $
+$NetBSD: patch-configure,v 1.7 2017/02/09 00:17:07 joerg Exp $
Detect Berkeley DB.
+Link against librt on NetBSD, too.
--- configure.orig 2016-09-21 12:09:36.000000000 +0000
+++ configure
@@ -28,3 +29,12 @@ Detect Berkeley DB.
else
libdb="no"; echo "no";
+@@ -14585,7 +14584,7 @@ if test a"$POSIX_SHARED_MEM" = "a1"; the
+ # Linux and solaris define the shm_open in -rt library.
+ # This library already included in LIBS for solaris
+ case "$target_os" in
+- linux*)
++ linux*|netbsd*)
+ EXTRALIBS="$EXTRALIBS -lrt"
+ ;;
+ *)