[hamradio-commits] [linpsk] 03/05: Applied patch from 753272

Iain Learmonth irl-guest at moszumanska.debian.org
Mon May 4 19:17:02 UTC 2015


This is an automated email from the git hooks/post-receive script.

irl-guest pushed a commit to branch master
in repository linpsk.

commit 51a82bd60ffd2ae389ff0dbb9a0959c432d52e3f
Author: Iain R. Learmonth <irl at fsfe.org>
Date:   Mon May 4 18:49:48 2015 +0100

    Applied patch from 753272
---
 debian/patches/ftbfs-clang.patch | 66 ++++++++++++++++++++++++++++++++++++++++
 debian/patches/series            |  1 +
 2 files changed, 67 insertions(+)

diff --git a/debian/patches/ftbfs-clang.patch b/debian/patches/ftbfs-clang.patch
new file mode 100644
index 0000000..0200841
--- /dev/null
+++ b/debian/patches/ftbfs-clang.patch
@@ -0,0 +1,66 @@
+--- linpsk.orig/src/csound.cpp
++++ linpsk/src/csound.cpp
+@@ -21,7 +21,7 @@
+ 
+ using namespace std;
+ extern Parameter settings;
+-CSound::CSound ( int ptt = -1 ) : Input ( ptt )
++CSound::CSound ( int ptt ) : Input ( ptt )
+ {
+   started = false;
+   output = false;
+--- linpsk.orig/src/csound.h
++++ linpsk/src/csound.h
+@@ -37,7 +37,7 @@
+ class CSound : public Input
+ {
+   public:
+-    CSound ( int ptt );
++    CSound ( int ptt = -1 );
+     ~CSound();
+     virtual bool open_Device_write ( QString * );
+     virtual bool open_Device_read ( QString * );
+--- linpsk.orig/src/textinput.cpp
++++ linpsk/src/textinput.cpp
+@@ -22,7 +22,7 @@
+ extern Parameter settings;
+ extern int errno;
+ 
+-TextInput::TextInput ( int ptt = -1 ) : Input ( ptt )
++TextInput::TextInput ( int ptt ) : Input ( ptt )
+ {
+ }
+ TextInput::~TextInput()
+--- linpsk.orig/src/textinput.h
++++ linpsk/src/textinput.h
+@@ -29,7 +29,7 @@
+ {
+     Q_OBJECT
+   public:
+-    TextInput ( int ptt );
++    TextInput ( int ptt = -1 );
+     ~TextInput();
+ 
+     /** Opens the Device for writting **/
+--- linpsk.orig/src/waveinput.cpp
++++ linpsk/src/waveinput.cpp
+@@ -19,7 +19,7 @@
+ 
+ extern Parameter settings;
+ 
+-WaveInput::WaveInput(int ptt = -1): Input(ptt)
++WaveInput::WaveInput(int ptt): Input(ptt)
+ {
+  EightBits=false;
+ }
+--- linpsk.orig/src/waveinput.h
++++ linpsk/src/waveinput.h
+@@ -31,7 +31,7 @@
+ {
+ Q_OBJECT
+   public:
+-    WaveInput ( int ptt );
++    WaveInput ( int ptt = -1 );
+     ~WaveInput();
+     /** Opens the Device for writting **/
+     bool open_Device_write ( QString * );
diff --git a/debian/patches/series b/debian/patches/series
index e69de29..d8897f3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -0,0 +1 @@
+ftbfs-clang.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hamradio/linpsk.git



More information about the pkg-hamradio-commits mailing list