repo.or.cz
/
void-packages.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python-texttable: update to 1.3.1
[void-packages.git]
/
srcpkgs
/
jack
/
patches
/
fix-execinfo.patch
blob
0f3a04bbe6ae735ca1ad493d4b085680ade90c35
1
--- dbus/sigsegv.c
2
+++ dbus/sigsegv.c
3
@@ -11,6 +11,8 @@
4
* Copyright (C) 2005 - 2008 Jaco Kroon
5
*/
6
7
+#ifdef __GLIBC__
8
+
9
#if defined(HAVE_CONFIG_H)
10
#include "config.h"
11
#endif
12
@@ -209,4 +211,12 @@
13
static void __attribute((constructor)) init(void) {
14
setup_sigsegv();
15
}
16
+#endif
17
+
18
+#else
19
+
20
+int setup_sigsegv() {
21
+ return 1;
22
+}
23
+
24
#endif