python-texttable: update to 1.3.1
[void-packages.git] / srcpkgs / jack / patches / fix-execinfo.patch
blob0f3a04bbe6ae735ca1ad493d4b085680ade90c35
1 --- dbus/sigsegv.c
2 +++ dbus/sigsegv.c
3 @@ -11,6 +11,8 @@
4 * Copyright (C) 2005 - 2008 Jaco Kroon
5 */
7 +#ifdef __GLIBC__
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();
16 +#endif
18 +#else
20 +int setup_sigsegv() {
21 + return 1;
24 #endif