summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authordholland <dholland@pkgsrc.org>2017-09-12 08:31:20 +0000
committerdholland <dholland@pkgsrc.org>2017-09-12 08:31:20 +0000
commitf4259247148eafa426ff6c3437870ef2a0358f38 (patch)
tree8fddc4cf7e615f48edb142787ad81b3647b3ac96 /misc
parent90786595181118cb29e81f6d6fd80c9e3c962e36 (diff)
downloadpkgsrc-f4259247148eafa426ff6c3437870ef2a0358f38.tar.gz
Remove bashism in configure script.
Diffstat (limited to 'misc')
-rw-r--r--misc/tmate/distinfo3
-rw-r--r--misc/tmate/patches/patch-configure.ac15
2 files changed, 17 insertions, 1 deletions
diff --git a/misc/tmate/distinfo b/misc/tmate/distinfo
index 479d564616d..e85fc686a68 100644
--- a/misc/tmate/distinfo
+++ b/misc/tmate/distinfo
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.1 2017/08/23 18:56:14 jperkin Exp $
+$NetBSD: distinfo,v 1.2 2017/09/12 08:31:20 dholland Exp $
SHA1 (tmate-2.2.1.tar.gz) = 8ef6999f7bf2511738650421e40b6a639e782d36
RMD160 (tmate-2.2.1.tar.gz) = fd72920b91041905a218f59ba25eb1d58d4bfc6c
SHA512 (tmate-2.2.1.tar.gz) = 3d4ce7510cd8da39bc4fe63f2a64179846a813bb3560ca811d9e1e2a28b06d95a9033047a900d76bda069c249d7ebbe1143daa082b23212c5d32a50bf1819d2d
Size (tmate-2.2.1.tar.gz) = 610745 bytes
+SHA1 (patch-configure.ac) = dba0fdd160797e3884533d99686efdf9b0af9e7a
SHA1 (patch-tmux.h) = 8c26d6ca70b1a8d51e7c920ea54f59d2023968fe
diff --git a/misc/tmate/patches/patch-configure.ac b/misc/tmate/patches/patch-configure.ac
new file mode 100644
index 00000000000..74fbabdad4d
--- /dev/null
+++ b/misc/tmate/patches/patch-configure.ac
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure.ac,v 1.1 2017/09/12 08:31:20 dholland Exp $
+
+Remove bashism in configure script.
+
+--- configure.ac~ 2016-03-29 03:30:07.000000000 +0000
++++ configure.ac
+@@ -465,7 +465,7 @@ if test "x$found_static" = xyes; then
+ LIBS="compat/memcpy.o -Wl,--wrap=memcpy $LIBS"
+ fi
+ LIBS="compat/clock_gettime.o libc/fdelt_chk.o $LIBS"
+- LIBS="-Wl,-Bstatic ${LIBS/-ldl/} -Wl,-Bdynamic -ldl"
++ LIBS="-Wl,-Bstatic $(echo ${LIBS} | sed -e s/-ldl//) -Wl,-Bdynamic -ldl"
+ fi
+
+ # Check for BSD-style integer types.