Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 875144 Details for
Bug 1076915
Use system gsm instead of bundled one
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Use system gsm instead of bundled one
Use-system-gsm-instead-of-bundled-one.patch (text/plain), 3.72 KB, created by
Ville Skyttä
on 2014-03-16 12:53:20 UTC
(
hide
)
Description:
Use system gsm instead of bundled one
Filename:
MIME Type:
Creator:
Ville Skyttä
Created:
2014-03-16 12:53:20 UTC
Size:
3.72 KB
patch
obsolete
>From ad939b68a8c2a2abe0c8475c7460d4bceb225eb1 Mon Sep 17 00:00:00 2001 >From: =?UTF-8?q?Ville=20Skytt=C3=A4?= <ville.skytta@iki.fi> >Date: Sun, 16 Mar 2014 14:51:13 +0200 >Subject: [PATCH] Use system gsm instead of bundled one > >https://bugzilla.redhat.com/show_bug.cgi?id=1076915 >--- > gnuradio-3.7.3-system-gsm.patch | 41 +++++++++++++++++++++++++++++++++++++++++ > gnuradio.spec | 10 ++++++++-- > 2 files changed, 49 insertions(+), 2 deletions(-) > create mode 100644 gnuradio-3.7.3-system-gsm.patch > >diff --git a/gnuradio-3.7.3-system-gsm.patch b/gnuradio-3.7.3-system-gsm.patch >new file mode 100644 >index 0000000..ca21b7a >--- /dev/null >+++ b/gnuradio-3.7.3-system-gsm.patch >@@ -0,0 +1,41 @@ >+diff -up gnuradio-3.7.3/gr-vocoder/lib/CMakeLists.txt~ gnuradio-3.7.3/gr-vocoder/lib/CMakeLists.txt >+--- gnuradio-3.7.3/gr-vocoder/lib/CMakeLists.txt~ 2013-06-30 03:05:51.000000000 +0300 >++++ gnuradio-3.7.3/gr-vocoder/lib/CMakeLists.txt 2014-03-16 13:56:08.728983153 +0200 >+@@ -79,12 +79,12 @@ endif(MSVC) >+ ######################################################################## >+ GR_INCLUDE_SUBDIRECTORY(codec2) >+ GR_INCLUDE_SUBDIRECTORY(g7xx) >+-GR_INCLUDE_SUBDIRECTORY(gsm) >+ >+ list(APPEND vocoder_libs >+ gnuradio-runtime >+ ${Boost_LIBRARIES} >+ ${LOG4CPP_LIBRARIES} >++ gsm >+ ) >+ >+ add_library(gnuradio-vocoder SHARED ${gr_vocoder_sources}) >+diff -up gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc~ gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc >+--- gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc~ 2013-06-30 03:05:51.000000000 +0300 >++++ gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_decode_ps_impl.cc 2014-03-16 14:34:42.850165603 +0200 >+@@ -29,6 +29,8 @@ >+ #include <stdexcept> >+ #include <assert.h> >+ >++#define GSM_SAMPLES_PER_FRAME 160 >++ >+ namespace gr { >+ namespace vocoder { >+ >+diff -up gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc~ gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc >+--- gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc~ 2014-03-07 20:28:19.000000000 +0200 >++++ gnuradio-3.7.3/gr-vocoder/lib/gsm_fr_encode_sp_impl.cc 2014-03-16 14:41:43.520202465 +0200 >+@@ -28,6 +28,8 @@ >+ #include <gnuradio/io_signature.h> >+ #include <stdexcept> >+ >++#define GSM_SAMPLES_PER_FRAME 160 >++ >+ namespace gr { >+ namespace vocoder { >+ >diff --git a/gnuradio.spec b/gnuradio.spec >index e0cea08..e6273f2 100644 >--- a/gnuradio.spec >+++ b/gnuradio.spec >@@ -19,7 +19,7 @@ > > Name: gnuradio > Version: 3.7.3 >-Release: 1%{?dist} >+Release: 2%{?dist} > Summary: Software defined radio framework > > Group: Applications/Engineering >@@ -33,12 +33,13 @@ Source0: http://gnuradio.org/releases/gnuradio/gnuradio-%{version}.tar.gz > # cd gnuradio > # git archive --format=tar --prefix=%%{name}-%%{version}/ %%{git_commit} | \ > # gzip > ../%%{name}-%%{version}.tar.gz >+Patch0: %{name}-3.7.3-system-gsm.patch > > Requires(pre): shadow-utils > BuildRequires: cmake, fftw-devel, cppunit-devel, wxPython-devel, xmlto > BuildRequires: graphviz, boost-devel, python-devel, swig, doxygen > BuildRequires: libusbx-devel, alsa-lib-devel, SDL-devel, guile-devel >-BuildRequires: portaudio-devel, libtool >+BuildRequires: portaudio-devel, libtool, gsm-devel > # Gnuradio deprecated gr-comedi > # http://gnuradio.org/redmine/issues/show/395 > # BuildRequires: comedilib-devel >@@ -87,6 +88,8 @@ GNU Radio examples > > %prep > %setup -q >+%patch0 -p1 >+rm -r gr-vocoder/lib/gsm > > #force regeneration of cached moc output files > find . -name "*_moc.cc" -exec rm {} \; >@@ -174,6 +177,9 @@ rm -rf %{buildroot} > %{_datadir}/gnuradio/examples > > %changelog >+* Sun Mar 16 2014 Ville Skyttä <ville.skytta@iki.fi> - 3.7.3-2 >+- Use system gsm instead of bundled one >+ > * Tue Mar 11 2014 Jaroslav Škarvada <jskarvad@redhat.com> - 3.7.3-1 > - New version > Resolves: rhbz#1074899 >-- >1.8.3.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1076915
: 875144