summaryrefslogtreecommitdiff
path: root/net-wireless/gr-osmosdr/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-11-25 01:11:37 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-11-25 01:11:37 +0000
commitb1b0997aac1e7f68389ed3e0f95d3ea9d92277e2 (patch)
tree11a204a4a8687d1677d7b04ddda4a236c755528e /net-wireless/gr-osmosdr/files
parent73f18fd49d6fabbb1dc8721e38adaa18d55b8c95 (diff)
gentoo auto-resync : 25:11:2022 - 01:11:36
Diffstat (limited to 'net-wireless/gr-osmosdr/files')
-rw-r--r--net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch b/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch
deleted file mode 100644
index 7699c81fed32..000000000000
--- a/net-wireless/gr-osmosdr/files/gr-osmosdr-0.2.3-use_xtrx_open_string.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From ecca19615c588f771a131432f7161156efc274c2 Mon Sep 17 00:00:00 2001
-From: lain <code@hacktheinter.net>
-Date: Tue, 30 Jul 2019 15:59:38 -0700
-Subject: [PATCH] Quick patch to use xtrx_open_string() instead of the removed
- xtrx_open_list().
-
----
- lib/xtrx/xtrx_obj.cc | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/lib/xtrx/xtrx_obj.cc b/lib/xtrx/xtrx_obj.cc
-index 1d58de5..5c73259 100644
---- a/lib/xtrx/xtrx_obj.cc
-+++ b/lib/xtrx/xtrx_obj.cc
-@@ -68,7 +68,7 @@ xtrx_obj::xtrx_obj(const std::string &path, unsigned loglevel, bool lmsreset)
- unsigned xtrxflag = (loglevel & XTRX_O_LOGLVL_MASK) | ((lmsreset) ? XTRX_O_RESET : 0);
- std::cerr << "xtrx_obj::xtrx_obj = " << xtrxflag << std::endl;
-
-- int res = xtrx_open_list(path.c_str(), NULL, &_obj);
-+ int res = xtrx_open_string(path.c_str(), &_obj);
- if (res < 0) {
- std::stringstream message;
- message << "Couldn't open " ": Error: " << -res;