Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opensuse-leap: install gnutls from source to obtain the latest version #83

Merged
merged 1 commit into from
Mar 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions opensuse-leap.docker.m4
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ RUN zypper -n in \
patch \
sqlite3 \
openssl-engine-libp11 \
gnutls \
acl \
json-glib-devel \
libusb-devel \
libftdi1-devel
libftdi1-devel \
libnettle-devel \
p11-kit-devel

include(`autoconf.m4')
include(`python3.7.2.m4')
Expand Down Expand Up @@ -81,4 +82,13 @@ include(`swtpm.m4')
include(`uthash.m4')
include(`junit.m4')

# Install GnuTLS-3.8.3 from source
RUN wget --no-verbose https://www.gnupg.org/ftp/gcrypt/gnutls/v3.8/gnutls-3.8.3.tar.xz
RUN tar -xf gnutls-3.8.3.tar.xz --one-top-level=/tmp/
WORKDIR /tmp/gnutls-3.8.3
RUN ./configure --with-included-unistring --disable-doc --disable-tests \
&& make -j \
&& make install \
&& ldconfig

WORKDIR /
Loading