From ef96cd431369b2cf0dd640a0bb66be4fb029b9c0 Mon Sep 17 00:00:00 2001 From: Jiri Moskovcak Date: Thu, 3 Mar 2011 12:47:28 +0100 Subject: renamed libreport.so to libreport2.so - we have a conflict with old report library which contains file with the same name --- src/include/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include') diff --git a/src/include/Makefile.am b/src/include/Makefile.am index 477963c3..b11c3332 100644 --- a/src/include/Makefile.am +++ b/src/include/Makefile.am @@ -1,5 +1,5 @@ -libreport_includedir = $(includedir)/report -libreport_include_HEADERS = \ +libreport2_includedir = $(includedir)/report +libreport2_include_HEADERS = \ report/crash_data.h \ report/dump_dir.h \ report/run_event.h -- cgit From fd5c97267cda4cfbc23e367fc1338aa0988a8b44 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Thu, 3 Mar 2011 13:35:15 +0100 Subject: remove FILENAME_REPRODUCE field. FILENAME_COMMENT should be used instead Signed-off-by: Denys Vlasenko --- src/include/abrt_crash_data.h | 1 - src/include/abrtlib.h | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'src/include') diff --git a/src/include/abrt_crash_data.h b/src/include/abrt_crash_data.h index b71b046f..2a123ec3 100644 --- a/src/include/abrt_crash_data.h +++ b/src/include/abrt_crash_data.h @@ -52,7 +52,6 @@ #define FILENAME_PACKAGE "package" #define FILENAME_COMPONENT "component" #define FILENAME_COMMENT "comment" -#define FILENAME_REPRODUCE "reproduce" #define FILENAME_RATING "rating" #define FILENAME_HOSTNAME "hostname" // Optional. Set to "1" by abrt-handle-upload for every unpacked crashdump diff --git a/src/include/abrtlib.h b/src/include/abrtlib.h index 61731587..116f4b36 100644 --- a/src/include/abrtlib.h +++ b/src/include/abrtlib.h @@ -229,8 +229,8 @@ char *iso_date_string(time_t *pt); #define make_description_bz abrt_make_description_bz char* make_description_bz(crash_data_t *crash_data); -#define make_description_reproduce_comment abrt_make_description_reproduce_comment -char* make_description_reproduce_comment(crash_data_t *crash_data); +#define make_description_comment abrt_make_description_comment +char* make_description_comment(crash_data_t *crash_data); #define make_description_logger abrt_make_description_logger char* make_description_logger(crash_data_t *crash_data); #define make_description_mailx abrt_make_description_mailx -- cgit