1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00

Add simple patch to build fetchmail against newer libssl

This commit is contained in:
Dario Ernst 2019-06-25 19:53:50 +00:00
parent 0144bb5974
commit 80c4edb144

View File

@ -6,6 +6,7 @@ RUN apk add --no-cache curl tar xz autoconf git gettext build-base openssl opens
RUN curl -L 'https://sourceforge.net/projects/fetchmail/files/branch_7-alpha/fetchmail-7.0.0-alpha6.tar.xz/download' | tar xJ
RUN cd fetchmail-7.0.0-alpha6 && \
sed -i -e 's/SSLv3_client_method/SSLv23_client_method/' socket.c && \
./configure --with-ssl --prefix /usr/local --disable-nls && \
make