1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
From: Reinhard Tartler <siretart@tauware.de>
Subject: in case of crash, suggest installing package mplayer-dbgsym for debugging symbols
Forwarded: not-needed
--- a/mplayer.c
+++ b/mplayer.c
@@ -824,7 +824,10 @@
case SIGSEGV:
mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGSEGV_SIGFPE);
default:
- mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGCRASH);
+ mp_msg(MSGT_CPLAYER, MSGL_FATAL,
+ " [ This binary of MPlayer in Debian is currently compiled with\n"
+ " '--enable-debug'; the debugging symbols are in the package\n"
+ " 'mplayer-dbgsym'.]\n");
#ifdef CONFIG_CRASH_DEBUG
if (crash_debug) {
int gdb_pid;
|