You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
Index: gdb-7.4.50.20120602/gdb/elfread.c |
|
=================================================================== |
|
--- gdb-7.4.50.20120602.orig/gdb/elfread.c 2012-06-02 21:35:09.669510757 +0200 |
|
+++ gdb-7.4.50.20120602/gdb/elfread.c 2012-06-02 21:35:31.106502660 +0200 |
|
@@ -1658,6 +1658,19 @@ build_id_to_filename (struct build_id *b |
|
#include <dlfcn.h> |
|
#endif |
|
|
|
+/* Workarodun https://bugzilla.redhat.com/show_bug.cgi?id=643031 |
|
+ librpm must not exit() an application on SIGINT |
|
+ |
|
+ Enable or disable a signal handler. SIGNUM: signal to enable (or disable |
|
+ if negative). HANDLER: sa_sigaction handler (or NULL to use |
|
+ rpmsqHandler()). Returns: no. of refs, -1 on error. */ |
|
+extern int rpmsqEnable (int signum, /* rpmsqAction_t handler */ void *handler); |
|
+int |
|
+rpmsqEnable (int signum, /* rpmsqAction_t handler */ void *handler) |
|
+{ |
|
+ return 0; |
|
+} |
|
+ |
|
/* This MISSING_RPM_HASH tracker is used to collect all the missing rpm files |
|
and avoid their duplicities during a single inferior run. */ |
|
|
|
Index: gdb-7.4.50.20120602/gdb/proc-service.list |
|
=================================================================== |
|
--- gdb-7.4.50.20120602.orig/gdb/proc-service.list 2012-06-02 21:35:09.669510757 +0200 |
|
+++ gdb-7.4.50.20120602/gdb/proc-service.list 2012-06-02 21:35:14.296508989 +0200 |
|
@@ -37,4 +37,7 @@ |
|
ps_pstop; |
|
ps_ptread; |
|
ps_ptwrite; |
|
+ |
|
+ /* gdb-6.6-buildid-locate-rpm.patch */ |
|
+ rpmsqEnable; |
|
};
|
|
|