diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-21 12:54:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-12-21 12:54:11 +0100 |
commit | 8a9ac05d747444358820c8d2da604904fad1271e (patch) | |
tree | b7d355dea762ae4885f773555fbcd388ab2af4de /package/DirectFB/patches | |
parent | 272b9fb572a6b1f585cf6f4f4150b07f1c1537bf (diff) |
fix build, with a patch from sabotage
Diffstat (limited to 'package/DirectFB/patches')
-rw-r--r-- | package/DirectFB/patches/patch-lib_direct_os_linux_glibc_system_c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/DirectFB/patches/patch-lib_direct_os_linux_glibc_system_c b/package/DirectFB/patches/patch-lib_direct_os_linux_glibc_system_c new file mode 100644 index 000000000..cd781b4c6 --- /dev/null +++ b/package/DirectFB/patches/patch-lib_direct_os_linux_glibc_system_c @@ -0,0 +1,19 @@ +--- DirectFB-1.6.3.orig/lib/direct/os/linux/glibc/system.c 2013-01-18 15:57:11.000000000 +0100 ++++ DirectFB-1.6.3/lib/direct/os/linux/glibc/system.c 2013-12-21 12:48:06.000000000 +0100 +@@ -33,6 +33,7 @@ + #include <errno.h> + #include <signal.h> + #include <unistd.h> ++#include <sys/syscall.h> + + #include <linux/unistd.h> + +@@ -107,7 +108,7 @@ direct_tgkill( int tgid, int tid, int si + void + direct_trap( const char *domain, int sig ) + { +- sigval_t val; ++ union sigval val; + + D_LOG( Direct_Trap, VERBOSE, "Raising signal %d from %s...\n", sig, domain ); + |