X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=windows%2FMYconfigure;h=ad845b0a02e9af74ce8216ae5cb3709d4b9ba95b;hb=d09739ae607d33bfc69041f303535921cb337466;hp=acbc8e56197731e46026bedf59eca2b4252d7ccf;hpb=9bcd3b78bb1b099886791f263cc45101a4b61a3f;p=privoxy.git diff --git a/windows/MYconfigure b/windows/MYconfigure index acbc8e56..ad845b0a 100755 --- a/windows/MYconfigure +++ b/windows/MYconfigure @@ -133,12 +133,21 @@ LDFLAGS="${LDFLAGS} -L${lib}" # mbedtls # Get the 2.16.x mbedtls library from https://github.com/ARMmbed/mbedtls/tags -inc="/source/mbedtls-2.16.9/include" -lib="/source/mbedtls-2.16.9/library" +inc="/source/mbedtls-2.16.10/include" +lib="/source/mbedtls-2.16.10/library" MITMOPT="--with-mbedtls" CPPFLAGS="${CPPFLAGS} -I${inc}" LDFLAGS="${LDFLAGS} -L${lib}" +# brotli +# Get the brotli library from https://github.com/google/brotli/releases +inc="/source/brotli-1.0.9/c/include" +lib="/source/brotli-1.0.9/.libs" +BROTLIOPT="--with-brotli" +CPPFLAGS="${CPPFLAGS} -I${inc}" +LDFLAGS="${LDFLAGS} -L${lib}" + +### echo "CFLAGS=${CFLAGS}" echo "CPPFLAGS=${CPPFLAGS}" echo "LDFLAGS=${LDFLAGS}" @@ -154,6 +163,8 @@ echo "LDFLAGS=${LDFLAGS}" --disable-pthread \ --enable-extended-statistics \ --enable-pcre-host-patterns \ + --with-brotli \ + --with-mbedtls \ --with-docbook=yes # -- done --