[SCM] ardour3/master: Drop obsolete patch 140_enable-ladish.patch
adiknoth-guest at users.alioth.debian.org
adiknoth-guest at users.alioth.debian.org
Sat Sep 7 09:10:29 UTC 2013
The following commit has been merged in the master branch:
commit d11c6673e488514f7da3abaab065486404ce78b5
Author: Adrian Knoth <adi at drcomp.erfurt.thur.de>
Date: Sat Sep 7 11:08:22 2013 +0200
Drop obsolete patch 140_enable-ladish.patch
diff --git a/debian/patches/140_enable-ladish.patch b/debian/patches/140_enable-ladish.patch
deleted file mode 100644
index c0090cc..0000000
--- a/debian/patches/140_enable-ladish.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-Origin: http://tracker.ardour.org/view.php?id=2990
-Author: Nedko Arnaudov <nedko at arnaudov.name>
-Description: Add ladish level 1 support
---- a/gtk2_ardour/main.cc
-+++ b/gtk2_ardour/main.cc
-@@ -450,6 +450,27 @@
- }
- }
-
-+static bool ladish_L1_save_request = false;
-+
-+static gboolean
-+maybe_ladish_L1_save (void* /* ignored */)
-+{
-+ if (ladish_L1_save_request) {
-+ cout << "ladish L1 save request" << endl;
-+ ladish_L1_save_request = false;
-+ ARDOUR_UI::instance()->save_state("");
-+ }
-+
-+ return true;
-+}
-+
-+static void
-+sigusr1_handler (int sig)
-+{
-+ //cout << "SIGUSR1 received!" << endl;
-+ ladish_L1_save_request = true;
-+}
-+
- #ifdef VST_SUPPORT
-
- extern int gui_init (int* argc, char** argv[]);
-@@ -540,6 +561,12 @@
- cerr << _("Cannot install SIGPIPE error handler") << endl;
- }
-
-+ g_timeout_add (300, maybe_ladish_L1_save, 0);
-+
-+ if (::signal (SIGUSR1, sigusr1_handler)) {
-+ cerr << _("Cannot install SIGUSR1 error handler") << endl;
-+ }
-+
- try {
- ui = new ARDOUR_UI (&argc, &argv);
- } catch (failed_constructor& err) {
--
ardour3 packaging
More information about the pkg-multimedia-commits
mailing list