tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 3260914db06acd5a8a0b4f0e5991f8e318190dce
parent 942c2da48e414001475ec6d87ce2845dfe99583c
Author: Alexander Færøy <ahf@torproject.org>
Date:   Sat, 17 Nov 2018 03:29:04 +0100

Add missing library to build tor-print-ed-signing-cert.

To succesful compile tor-print-ed-signing-cert.exe on Windows we
sometimes need to include the @TOR_LIB_GDI@ library.

See: https://bugs.torproject.org/28485

Diffstat:
Achanges/bug28485 | 3+++
Msrc/tools/include.am | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/changes/bug28485 b/changes/bug28485 @@ -0,0 +1,3 @@ + o Minor bugfixes (compilation): + - Add missing dependency on libgdi32.dll for tor-print-ed-signing-cert.exe + on Windows. Fixes bug 28485; bugfix on 0.3.5.1-alpha. diff --git a/src/tools/include.am b/src/tools/include.am @@ -41,7 +41,7 @@ src_tools_tor_print_ed_signing_cert_LDADD = \ $(TOR_CRYPTO_LIBS) \ $(TOR_UTIL_LIBS) \ @TOR_LIB_MATH@ $(TOR_LIBS_CRYPTLIB) \ - @TOR_LIB_WS32@ @TOR_LIB_USERENV@ + @TOR_LIB_WS32@ @TOR_LIB_USERENV@ @TOR_LIB_GDI@ if USE_NSS # ...