parent
8fb166dca3
commit
4b42ea2522
@ -1,13 +0,0 @@
|
||||
diff --git a/dbus/sigsegv.c b/dbus/sigsegv.c
|
||||
index de316429..0f135ec0 100644
|
||||
--- a/dbus/sigsegv.c
|
||||
+++ b/dbus/sigsegv.c
|
||||
@@ -64,7 +64,7 @@ static void signal_segv(int signum, siginfo_t* info, void*ptr) {
|
||||
const char *si_code_str;
|
||||
ucontext_t *ucontext = (ucontext_t*)ptr;
|
||||
|
||||
-#if defined(HAVE_UCONTEXT) && defined(HAVE_NGREG)
|
||||
+#if ( defined(HAVE_UCONTEXT) && defined(HAVE_NGREG) ) || defined(HAVE_EXECINFO_H)
|
||||
size_t i;
|
||||
#endif
|
||||
#if defined(SIGSEGV_STACK_X86) || defined(SIGSEGV_STACK_IA64)
|
@ -1,13 +0,0 @@
|
||||
diff --git a/linux/alsarawmidi/JackALSARawMidiPort.cpp b/linux/alsarawmidi/JackALSARawMidiPort.cpp
|
||||
index 70e1fa71..8ef0ab65 100644
|
||||
--- a/linux/alsarawmidi/JackALSARawMidiPort.cpp
|
||||
+++ b/linux/alsarawmidi/JackALSARawMidiPort.cpp
|
||||
@@ -109,7 +109,7 @@ JackALSARawMidiPort::JackALSARawMidiPort(const char *client_name, snd_rawmidi_in
|
||||
}
|
||||
try {
|
||||
CreateNonBlockingPipe(fds);
|
||||
- } catch (std::exception e) {
|
||||
+ } catch (std::exception& e) {
|
||||
error_message = e.what();
|
||||
func = "CreateNonBlockingPipe";
|
||||
goto close;
|
@ -1,110 +0,0 @@
|
||||
diff --git a/common/wscript b/common/wscript
|
||||
index afc251a2..70503788 100644
|
||||
--- a/common/wscript
|
||||
+++ b/common/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
import re
|
||||
diff --git a/compat/alloca/wscript b/compat/alloca/wscript
|
||||
index 36798973..9e740f1c 100644
|
||||
--- a/compat/alloca/wscript
|
||||
+++ b/compat/alloca/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/python3
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com>
|
||||
diff --git a/compat/wscript b/compat/wscript
|
||||
index e3ec8d33..25eb2a3f 100644
|
||||
--- a/compat/wscript
|
||||
+++ b/compat/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/python3
|
||||
# encoding: utf-8
|
||||
#
|
||||
# Copyright (C) 2018 Karl Linden <karl.j.linden@gmail.com>
|
||||
diff --git a/dbus/wscript b/dbus/wscript
|
||||
index 535d4121..fa40b4f1 100644
|
||||
--- a/dbus/wscript
|
||||
+++ b/dbus/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
import os.path
|
||||
diff --git a/example-clients/jack_control b/example-clients/jack_control
|
||||
index 61ac40c1..54277543 100755
|
||||
--- a/example-clients/jack_control
|
||||
+++ b/example-clients/jack_control
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/python3
|
||||
|
||||
from __future__ import print_function
|
||||
name_base = 'org.jackaudio'
|
||||
diff --git a/example-clients/wscript b/example-clients/wscript
|
||||
index 6163d222..a8857aa7 100644
|
||||
--- a/example-clients/wscript
|
||||
+++ b/example-clients/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
example_programs = {
|
||||
diff --git a/man/wscript b/man/wscript
|
||||
index 9e4d3043..def57078 100644
|
||||
--- a/man/wscript
|
||||
+++ b/man/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
import re
|
||||
diff --git a/systemd/wscript b/systemd/wscript
|
||||
index fc8b8f15..d10bdf96 100644
|
||||
--- a/systemd/wscript
|
||||
+++ b/systemd/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
|
||||
diff --git a/tests/wscript b/tests/wscript
|
||||
index 756fd3bb..96a63bc9 100644
|
||||
--- a/tests/wscript
|
||||
+++ b/tests/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
|
||||
test_programs = {
|
||||
diff --git a/waf b/waf
|
||||
index a2efc852..845fba5e 100755
|
||||
--- a/waf
|
||||
+++ b/waf
|
||||
@@ -1,4 +1,4 @@
|
||||
-#!/usr/bin/env python
|
||||
+#!/usr/bin/python3
|
||||
# encoding: latin-1
|
||||
# Thomas Nagy, 2005-2018
|
||||
#
|
||||
diff --git a/wscript b/wscript
|
||||
index 5e8485e6..7e48f750 100644
|
||||
--- a/wscript
|
||||
+++ b/wscript
|
||||
@@ -1,4 +1,4 @@
|
||||
-#! /usr/bin/env python
|
||||
+#! /usr/bin/python3
|
||||
# encoding: utf-8
|
||||
from __future__ import print_function
|
||||
|
@ -1 +1 @@
|
||||
SHA512 (jack2-1.9.13.tar.gz) = dd83a6535cf92a3c45b5ed31edda5f1cb4a6c1db2ac683d4ea709e226bc30d55b366ce80ee543dfaa600f871079f3754e9314124093e230dc7deeceb828de8aa
|
||||
SHA512 (jack2-1.9.14.tar.gz) = ca9738fd5aadcb7e125f98a358437905959afebe0b792cab316fc31410e89ea3aefdb85154792a9d0a80fa988aa7eff379ff5c7ac6c4bfa1d57ad3d7de7b5fdd
|
||||
|
@ -0,0 +1 @@
|
||||
#define SVN_VERSION "0+b54a09bf7ef760d81fdb8544ad10e45575394624"
|
Loading…
Reference in new issue