1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

updated libwebsockets to 4.0.1

This commit is contained in:
Falk Werner
2020-04-06 19:36:02 +02:00
parent cd0c4a5213
commit 485cc84148
6 changed files with 17 additions and 11 deletions

View File

@@ -67,9 +67,11 @@ RUN set -x \
&& rm -rf "$builddir" \
&& apk del .build-deps
ARG WEBSOCKETS_VERSION=3.2.0
ARG WEBSOCKETS_VERSION=4.0.1
RUN set -x \
&& builddeps="linux-headers" \
&& apk add --no-cache --virtual .build-deps $builddeps \
&& apk add --no-cache \
ca-certificates \
openssl \
@@ -79,7 +81,8 @@ RUN set -x \
&& cd "$builddir" \
&& cmake "/usr/local/src/libwebsockets-$WEBSOCKETS_VERSION" \
&& make "$PARALLELMFLAGS" install \
&& rm -rf "$builddir"
&& rm -rf "$builddir" \
&& apk del .build-deps
ARG JANSSON_VERSION=2.12