From d4d792352e5a107673761e4d847b0383053125b9 Mon Sep 17 00:00:00 2001 From: Wander Nauta Date: Thu, 28 Mar 2024 17:42:21 +0100 Subject: [PATCH] Disable br, gzip compression support in httplib by default Fixes https://github.com/berthubert/simplomon/issues/14 --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 4a89112..1078b7c 100644 --- a/meson.build +++ b/meson.build @@ -64,7 +64,7 @@ if not lua_dep.found() error('Lua 5.3 could not be found') endif -cpphttplib = dependency('cpp-httplib') +cpphttplib = dependency('cpp-httplib', default_options: ['cpp-httplib_zlib=disabled', 'cpp-httplib_brotli=disabled']) sqlitewriter_dep = dependency('sqlitewriter', static: true) doctest_dep=dependency('doctest') simplesockets_dep = dependency('simplesockets', static: true)