Blame SOURCES/satyr-0.13-normalize-extend-xorg-blacklist.patch

f41043
From f3f36ff858f50aed5a6c4df5144ae15aeb5255b9 Mon Sep 17 00:00:00 2001
f41043
From: Martin Milata <mmilata@redhat.com>
f41043
Date: Mon, 24 Feb 2014 12:44:12 +0100
f41043
Subject: [PATCH] normalize: extend xorg blacklist
f41043
f41043
Closes rhbz#1068767.
f41043
f41043
Signed-off-by: Martin Milata <mmilata@redhat.com>
f41043
---
f41043
 lib/normalize.c | 8 +++++++-
f41043
 1 file changed, 7 insertions(+), 1 deletion(-)
f41043
f41043
diff --git a/lib/normalize.c b/lib/normalize.c
f41043
index d332882..81be188 100644
f41043
--- a/lib/normalize.c
f41043
+++ b/lib/normalize.c
f41043
@@ -164,7 +164,13 @@ is_removable_xorg(const char *function_name,
f41043
         call_match(function_name, source_file, "_XReply", "xcb_io.c", NULL) ||
f41043
         call_match(function_name, source_file, "_XError", "XlibInt.c", NULL) ||
f41043
         call_match(function_name, source_file, "XSync", "Sync.c", NULL) ||
f41043
-        call_match(function_name, source_file, "process_responses", "xcb_io.c", NULL);
f41043
+        call_match(function_name, source_file, "process_responses", "xcb_io.c", NULL) ||
f41043
+        call_match(function_name, source_file, "OsSigHandler", "osinit.c", NULL) ||
f41043
+        call_match(function_name, source_file, "FatalError", "log.c", NULL) ||
f41043
+        call_match(function_name, source_file, "AbortServer", "log.c", NULL) ||
f41043
+        call_match(function_name, source_file, "AbortDDX", "xf86Init.c", NULL) ||
f41043
+        call_match(function_name, source_file, "ddxGiveUp", "xf86Init.c", NULL) ||
f41043
+        call_match(function_name, source_file, "OsAbort", "utils.c", NULL);
f41043
 }
f41043
 
f41043
 static bool
f41043
-- 
f41043
1.8.3.1
f41043