1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

build libwebsockets with extensions

This commit is contained in:
Steffen Vogel 2020-06-06 23:06:47 +02:00 committed by Steffen Vogel
parent df038bcd72
commit 81e93541b0

View file

@ -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