[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Building mailuitls under Alpine Linux
From: |
Yuri Kanivetsky |
Subject: |
Re: Building mailuitls under Alpine Linux |
Date: |
Tue, 11 Jun 2024 21:59:22 +0300 |
On Tue, Jun 11, 2024 at 1:22 PM Sergey Poznyakoff <gray@gnu.org.ua> wrote:
> Thanks for reporting. Mailutils includes its own version of ltmain.sh,
> which conflicts with libtool 2.4.7. I have fixed this in two recent
> commits. Please pull.
Yep, now it's working:
FROM alpine:3.20
RUN apk add git libtool autoconf automake wget rsync gettext-dev
coreutils build-base perl-pod-parser bison flex gawk texinfo
gnutls-dev libgsasl-dev \
&& git clone git://git.savannah.gnu.org/mailutils.git \
&& cd mailutils \
&& sed -i '/CFLAGS=.*sed/d' am/debug.m4 \
&& ./bootstrap \
&& ./configure CFLAGS='-g3 -O0' \
&& make install
Thanks.
Regards,
Yuri
Re: Building mailuitls under Alpine Linux, Sergey Poznyakoff, 2024/06/11