[pacman-dev] [PATCH 1/3] Fix compatibility with older versions of libarchive.
Dan McGee
dpmcgee at gmail.com
Sat Apr 2 13:39:24 EDT 2011
On Fri, Apr 1, 2011 at 5:35 PM, Rémy Oudompheng
<remyoudompheng at gmail.com> wrote:
> There is no reason to not support versions of libarchive that lack
> ARCHIVE_COMPRESSION_UU. Distributions should work properly without
> this.
>
> Signed-off-by: Rémy Oudompheng <remy at archlinux.org>
Thanks, applied to maint.
> ---
> lib/libalpm/be_sync.c | 2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/lib/libalpm/be_sync.c b/lib/libalpm/be_sync.c
> index ef8517e..c2c62aa 100644
> --- a/lib/libalpm/be_sync.c
> +++ b/lib/libalpm/be_sync.c
> @@ -197,9 +197,11 @@ static size_t estimate_package_count(struct stat *st, struct archive *archive)
> case ARCHIVE_COMPRESSION_XZ:
> per_package = 143;
> break;
> +#ifdef ARCHIVE_COMPRESSION_UU
> case ARCHIVE_COMPRESSION_UU:
> per_package = 3543;
> break;
> +#endif
> default:
> /* assume it is at least somewhat compressed */
> per_package = 200;
> --
> 1.7.4.2
>
>
>
More information about the pacman-dev
mailing list