| 1 |
--- openoffice.org.orig/sal/osl/unx/signal.c 2009-09-15 09:14:35.000000000 +0100
|
| 2 |
+++ openoffice.org/sal/osl/unx/signal.c 2009-09-15 09:14:40.000000000 +0100
|
| 3 |
@@ -77,10 +77,14 @@
|
| 4 |
#include "file_path_helper.h"
|
| 5 |
|
| 6 |
#define ACT_IGNORE 1
|
| 7 |
-#define ACT_ABORT 2
|
| 8 |
-#define ACT_EXIT 3
|
| 9 |
-#define ACT_SYSTEM 4
|
| 10 |
-#define ACT_HIDE 5
|
| 11 |
+#define ACT_EXIT 2
|
| 12 |
+#define ACT_SYSTEM 3
|
| 13 |
+#define ACT_HIDE 4
|
| 14 |
+#ifdef SAL_ENABLE_CRASH_REPORT
|
| 15 |
+# define ACT_ABORT 5
|
| 16 |
+#else
|
| 17 |
+# define ACT_ABORT ACT_SYSTEM
|
| 18 |
+#endif
|
| 19 |
|
| 20 |
#define MAX_PATH_LEN 2048
|
| 21 |
|