summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Farina <zerochaos@gentoo.org>2021-02-25 12:19:54 -0500
committerRick Farina <zerochaos@gentoo.org>2021-02-25 12:20:25 -0500
commit59b5589e102660a7f96796afa33a1db8dccb1499 (patch)
tree09bbc1b9ab3e22a6d2b3e45d263ddcf55be7eadb /net-analyzer/ostinato/files
parentapp-text/jabref-bin: explicitly mark as a live ebuild with live property (diff)
downloadgentoo-59b5589e102660a7f96796afa33a1db8dccb1499.tar.gz
gentoo-59b5589e102660a7f96796afa33a1db8dccb1499.tar.bz2
gentoo-59b5589e102660a7f96796afa33a1db8dccb1499.zip
net-analyzer/ostinato: bump
Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Rick Farina <zerochaos@gentoo.org>
Diffstat (limited to 'net-analyzer/ostinato/files')
-rw-r--r--net-analyzer/ostinato/files/ostinato-0.9_p20180522-buildfix.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/net-analyzer/ostinato/files/ostinato-0.9_p20180522-buildfix.patch b/net-analyzer/ostinato/files/ostinato-0.9_p20180522-buildfix.patch
deleted file mode 100644
index ff09d689ae5c..000000000000
--- a/net-analyzer/ostinato/files/ostinato-0.9_p20180522-buildfix.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- a/common/mld.cpp 2018-05-22 18:18:21.000000000 +0200
-+++ b/common/mld.cpp 2018-06-26 13:59:58.562569302 +0200
-@@ -24,6 +24,14 @@
- #include <QHostAddress>
- #include <QStringList>
-
-+template <> inline Q_DECL_CONSTEXPR unsigned long qbswap<unsigned long>(unsigned long source) {
-+ if (sizeof(unsigned long) == 8) {
-+ return qbswap<quint64>(quint64(source));
-+ } else {
-+ return qbswap<quint32>(quint32(source));
-+ }
-+}
-+
- MldProtocol::MldProtocol(StreamBase *stream, AbstractProtocol *parent)
- : GmpProtocol(stream, parent)
- {