windows build: default build now uses --with-brotli
authorLee <ler762@users.sourceforge.net>
Sun, 21 Feb 2021 13:43:03 +0000 (08:43 -0500)
committerLee <ler762@users.sourceforge.net>
Sun, 21 Feb 2021 13:43:03 +0000 (08:43 -0500)
windows/MYconfigure

index acbc8e5..49273e1 100755 (executable)
@@ -139,6 +139,15 @@ 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 --