summaryrefslogtreecommitdiff
path: root/comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp')
-rw-r--r--comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp b/comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp
deleted file mode 100644
index f4d5b1509ee2..000000000000
--- a/comms/qtel/files/patch-async-demo-AsyncAudioIO_demo.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- ../svxlink-11.05.orig/async/demo/AsyncAudioIO_demo.cpp 2010-02-21 12:21:23.000000000 -0800
-+++ async/demo/AsyncAudioIO_demo.cpp 2012-05-28 10:27:56.000000000 -0700
-@@ -106,7 +106,7 @@
- MyClass(void)
- {
- // Create a new audio IO object
-- audio_io = new AudioIO("alsa:default", 0);
-+ audio_io = new AudioIO("oss:/dev/dsp", 0);
-
- // Open it for both reading and writing
- audio_io->open(AudioIO::MODE_RDWR);
-@@ -117,7 +117,7 @@
- // Register the audio device as the audio source for this object
- registerSource(audio_io);
-
-- SineGenerator *sine_gen = new SineGenerator("alsa:default", 1);
-+ SineGenerator *sine_gen = new SineGenerator("oss:/dev/dsp", 1);
- sine_gen->setFq(1000);
- sine_gen->setLevel(2);
- sine_gen->enable(true);