From 81e93541b0c7b8f8353619f7245bb8d67a9dc751 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 6 Jun 2020 23:06:47 +0200 Subject: [PATCH] build libwebsockets with extensions --- packaging/deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/deps.sh b/packaging/deps.sh index 17fcb9345..2d54488d2 100644 --- a/packaging/deps.sh +++ b/packaging/deps.sh @@ -96,7 +96,7 @@ if ! pkg-config "libwebsockets >= 2.3.0"; then mkdir -p libwebsockets/build pushd libwebsockets/build git checkout v4.0-stable - cmake -DCMAKE_INSTALL_LIBDIR=/usr/local/lib64 ${CMAKE_OPTS} .. + cmake -DCMAKE_INSTALL_LIBDIR=/usr/local/lib64 -DLWS_WITHOUT_EXTENSIONS=OFF ${CMAKE_OPTS} .. make -j$(nproc) ${TARGET} popd fi