summaryrefslogtreecommitdiff
path: root/net/wireshark/patches/patch-bc
diff options
context:
space:
mode:
Diffstat (limited to 'net/wireshark/patches/patch-bc')
-rw-r--r--net/wireshark/patches/patch-bc15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/wireshark/patches/patch-bc b/net/wireshark/patches/patch-bc
deleted file mode 100644
index a9457ec553b..00000000000
--- a/net/wireshark/patches/patch-bc
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-bc,v 1.1 2010/09/26 23:15:18 tron Exp $
-
-Avoid conflict with NetBSD's popcount(3).
-
---- tools/process-x11-xcb.pl.orig 2010-08-29 23:15:01.000000000 +0100
-+++ tools/process-x11-xcb.pl 2010-09-26 23:55:27.000000000 +0100
-@@ -436,7 +436,7 @@
- return '(' . $op->att('op') . "$left)";
- }
- when ('popcount') {
-- return "popcount($left)";
-+ return "my_popcount($left)";
- }
- default { die "Invalid unop element $op->name()\n"; }
- }