summaryrefslogtreecommitdiff
path: root/chat
diff options
context:
space:
mode:
authormaya <maya@pkgsrc.org>2021-12-17 18:47:26 +0000
committermaya <maya@pkgsrc.org>2021-12-17 18:47:26 +0000
commit01d6fdc649ad9ff7e7b87f80de18de1a2a21faf8 (patch)
tree0e661cbc979121622521db7fd507e382fea65f95 /chat
parenta9fab86049d62bb112a07f8ed390ec5ce880f24c (diff)
downloadpkgsrc-01d6fdc649ad9ff7e7b87f80de18de1a2a21faf8.tar.gz
hexchat: fix build with libpci option (meson doesn't like double quotes)
Diffstat (limited to 'chat')
-rw-r--r--chat/hexchat/distinfo4
-rw-r--r--chat/hexchat/patches/patch-plugins_sysinfo_meson.build4
2 files changed, 4 insertions, 4 deletions
diff --git a/chat/hexchat/distinfo b/chat/hexchat/distinfo
index 163506bc962..f18e64dc1e6 100644
--- a/chat/hexchat/distinfo
+++ b/chat/hexchat/distinfo
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.14 2021/10/26 10:05:14 nia Exp $
+$NetBSD: distinfo,v 1.15 2021/12/17 18:47:26 maya Exp $
BLAKE2s (hexchat-2.16.0.tar.xz) = 29c7c88c02e2279a8633919ac0f8d6a6fb49d82c3e54c50c8033a0845e920895
SHA512 (hexchat-2.16.0.tar.xz) = 4802f6efe0883f48d3d56ee949be1fc224b76a3c76956dcba3f913679e91424ba53c5c0d68bb4e0e790b16a08689111098958ead4c83c35cddf39855fe07c207
Size (hexchat-2.16.0.tar.xz) = 1348320 bytes
SHA1 (patch-osx_launcher.sh) = 7493430921809182898aca2ebb8fd1f493dbd9d3
-SHA1 (patch-plugins_sysinfo_meson.build) = 8052ddfb5a79c9c4d5c84fbe6ff6c2ae42cbc4d2
+SHA1 (patch-plugins_sysinfo_meson.build) = 35257a24137fe02a1ba292d7da8b627d318de0ab
SHA1 (patch-plugins_sysinfo_unix_parse.c) = 92b882b7573cfcfc280351353a7bdcb0a7940c06
SHA1 (patch-plugins_sysinfo_unix_pci.c) = db2d20261419bed6d6c4b716b4416d73b3386053
SHA1 (patch-plugins_sysinfo_unix_pci.h) = 018b74796143b26d6a1f9ad821f3889b74b09cc8
diff --git a/chat/hexchat/patches/patch-plugins_sysinfo_meson.build b/chat/hexchat/patches/patch-plugins_sysinfo_meson.build
index 40958424d9a..1f8bb2ca309 100644
--- a/chat/hexchat/patches/patch-plugins_sysinfo_meson.build
+++ b/chat/hexchat/patches/patch-plugins_sysinfo_meson.build
@@ -1,4 +1,4 @@
-$NetBSD: patch-plugins_sysinfo_meson.build,v 1.3 2021/10/19 08:17:06 nia Exp $
+$NetBSD: patch-plugins_sysinfo_meson.build,v 1.4 2021/12/17 18:47:26 maya Exp $
XXX this is incomplete
@@ -9,7 +9,7 @@ XXX this is incomplete
system = host_machine.system()
-if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd'
-+if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd' or system == "netbsd"
++if system == 'linux' or system == 'gnu' or system.startswith('gnu/') or system == 'darwin' or system == 'freebsd' or system == 'netbsd'
sysinfo_includes += 'shared'
sysinfo_sources += [
'shared/df.c'