Remove patch - apllied upstream.
authorJaromír Mikeš <mira.mikes@seznam.cz>
Thu, 3 Sep 2015 01:53:04 +0000 (03:53 +0200)
committerJaromír Mikeš <mira.mikes@seznam.cz>
Thu, 3 Sep 2015 01:53:04 +0000 (03:53 +0200)
debian/patches/default-soundsystem_parentheses.patch [deleted file]
debian/patches/series

diff --git a/debian/patches/default-soundsystem_parentheses.patch b/debian/patches/default-soundsystem_parentheses.patch
deleted file mode 100644 (file)
index be36a44..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-Description: proper parentheses around bitwise operations
- the original "(!soundSystem & (SYS_API_ANY))" is
- a) wrong
- b) FTBFS on g++5
-Author: IOhannes m zmölnig
-Forwarded: https://github.com/monocasual/giada/pull/50
-Last-Update: 2015-07-07
----
-This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
-Index: giada/src/conf.cpp
-===================================================================
---- giada.orig/src/conf.cpp
-+++ giada/src/conf.cpp
-@@ -191,7 +191,7 @@ int Conf::read()
-       logMode = atoi(getValue("logMode").c_str());
-       soundSystem = atoi(getValue("soundSystem").c_str());
--      if (!soundSystem & (SYS_API_ANY)) soundSystem = DEFAULT_SOUNDSYS;
-+      if (!(soundSystem & SYS_API_ANY)) soundSystem = DEFAULT_SOUNDSYS;
-       soundDeviceOut = atoi(getValue("soundDeviceOut").c_str());
-       if (soundDeviceOut < 0) soundDeviceOut = DEFAULT_SOUNDDEV_OUT;
index 2978c72bb6518b9acf9ea0ef6aae20780cb525da..dd6a7252ae4bc6b9062eb8c95d8b0a10ab8dd33c 100644 (file)
@@ -1,2 +1 @@
-default-soundsystem_parentheses.patch
 0002-spelling.patch