diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | URPM.xs | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -1,6 +1,8 @@ - make clear URPM needs rpm >= 4.14 +- restore compatibility with rpm-4.12.x & 4.13.x - revert fix for segfault with rpm-4.14 when checking invalid signatures as rpm got fixed +- restore rpm-4.12.x compatibility - restore rpm-4.13.x compatibility - use ExtUtils::PkgConfig in order to get rpm installed - cpan testers: @@ -1269,10 +1269,12 @@ static void *rpmRunTransactions_callback(__attribute__((unused)) const void *h, callback = td->callback_error; callback_type = "error"; break; +#ifdef RPM4_13_0 case RPMCALLBACK_ELEM_PROGRESS: callback = td->callback_elem; callback_type = "elem"; break; +#endif default: break; } @@ -1304,9 +1306,11 @@ static void *rpmRunTransactions_callback(__attribute__((unused)) const void *h, case RPMCALLBACK_CPIO_ERROR: callback_subtype = "cpio"; break; +#ifdef RPM4_13_0 case RPMCALLBACK_ELEM_PROGRESS: callback_subtype = "progress"; break; +#endif case RPMCALLBACK_SCRIPT_ERROR: callback_subtype = "script"; break; |