diff options
author | Alexander Færøy <ahf@torproject.org> | 2020-07-07 14:48:36 +0000 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2020-07-07 14:48:36 +0000 |
commit | aa80f73fc426057cc59c6c473351d86f6983803c (patch) | |
tree | ea8ccf50e77cccddf9963d2ce5ffa2518d18eb7f | |
parent | bc63f59f3c45c61296aac94411f9ab73cfbda322 (diff) | |
parent | d4c79cae76536673184ffd4f6116bcd07fd0b1f5 (diff) | |
download | tor-aa80f73fc426057cc59c6c473351d86f6983803c.tar.gz tor-aa80f73fc426057cc59c6c473351d86f6983803c.zip |
Merge branch 'maint-0.4.4'
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | changes/ticket40026 | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 02241c0a5a..22268bee97 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -87,7 +87,7 @@ build_script: # mingw zstd doesn't come with a pkg-config file, so we manually # configure its flags. liblzma just works. #> - Execute-Bash "ZSTD_CFLAGS='-L/${env:compiler_path}/include' ZSTD_LIBS='-L/${env:compiler_path}/lib -lzstd' ../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --with-openssl-dir=/${env:compiler_path} --disable-asciidoc --enable-fatal-warnings ${env:hardening}" + Execute-Bash "ZSTD_CFLAGS='-L/${env:compiler_path}/include' ZSTD_LIBS='-L/${env:compiler_path}/lib -lzstd' ../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --with-openssl-dir=/${env:compiler_path} --disable-asciidoc --enable-fatal-warnings ${env:hardening} CFLAGS='-D__USE_MINGW_ANSI_STDIO=0'" Execute-Bash "V=1 make -k -j2" Execute-Bash "V=1 make -k -j2 install" } diff --git a/changes/ticket40026 b/changes/ticket40026 new file mode 100644 index 0000000000..f87c2964e0 --- /dev/null +++ b/changes/ticket40026 @@ -0,0 +1,3 @@ + o Minor bugfix (CI, Windows): + - Don't use stdio 64 bit printf format when compiling with MINGW on + Appveyor. Fixes bug 40026; bugfix on 0.3.5.5-alpha. |