diff options
author | Richard Gallamore <ultima@FreeBSD.org> | 2017-08-21 06:57:50 +0000 |
---|---|---|
committer | Richard Gallamore <ultima@FreeBSD.org> | 2017-08-21 06:57:50 +0000 |
commit | e13f98a7301e7287f982242681c434c13ef053e1 (patch) | |
tree | e586e23207f72745724cc621bf73a2919c592ec2 /audio/qsynth/files/patch-src_qsynthOptions.cpp | |
parent | - Update to 1.093 (requires PORTEPOCH bump) (diff) |
* Updated to 0.4.4
* Removed QT4 option, obsoleted
* Added XUNIQUE option, to match configure
* Moved patch to post-patch target
PR: 221456
Submitted by: Yuri Victorovich
Reviewed by: matthew (mentor)
Approved by: matthew (mentor)
Differential Revision: https://reviews.freebsd.org/D12095
Diffstat (limited to 'audio/qsynth/files/patch-src_qsynthOptions.cpp')
-rw-r--r-- | audio/qsynth/files/patch-src_qsynthOptions.cpp | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/audio/qsynth/files/patch-src_qsynthOptions.cpp b/audio/qsynth/files/patch-src_qsynthOptions.cpp deleted file mode 100644 index ec3d4e63af43..000000000000 --- a/audio/qsynth/files/patch-src_qsynthOptions.cpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/qsynthOptions.cpp.orig 2016-04-05 15:57:45 UTC -+++ src/qsynthOptions.cpp -@@ -172,11 +172,11 @@ void qsynthOptions::print_usage ( const - out << " -n, --no-midi-in" + sEot + - QObject::tr("Don't create a midi driver to read MIDI input events [default = yes]") + sEol; - out << " -m, --midi-driver=[label]" + sEot + -- QObject::tr("The name of the midi driver to use [oss,alsa,alsa_seq,...]") + sEol; -+ QObject::tr("The name of the midi driver to use [jack,oss,...]") + sEol; - out << " -K, --midi-channels=[num]" + sEot + - QObject::tr("The number of midi channels [default = 16]") + sEol; - out << " -a, --audio-driver=[label]" + sEot + -- QObject::tr("The audio driver [alsa,jack,oss,dsound,...]") + sEol; -+ QObject::tr("The audio driver [jack,oss,dsound,...]") + sEol; - out << " -j, --connect-jack-outputs" + sEot + - QObject::tr("Attempt to connect the jack outputs to the physical ports") + sEol; - out << " -L, --audio-channels=[num]" + sEot + -@@ -479,7 +479,7 @@ void qsynthOptions::loadSetup ( qsynthSe - pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 512).toInt(); - pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 8).toInt(); - #else -- pSetup->sMidiDriver = m_settings.value("/MidiDriver", "alsa_seq").toString(); -+ pSetup->sMidiDriver = m_settings.value("/MidiDriver", "jack").toString(); - pSetup->sAudioDriver = m_settings.value("/AudioDriver", "jack").toString(); - pSetup->iAudioBufSize = m_settings.value("/AudioBufSize", 64).toInt(); - pSetup->iAudioBufCount = m_settings.value("/AudioBufCount", 2).toInt(); |