From: David Goulet Date: Tue, 24 Mar 2015 20:04:28 +0000 (-0400) Subject: Test: add missing libor.a in include.am X-Git-Tag: tor-0.2.7.1-alpha~106^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2dc5d790d314beb202dfa1659161113f1f6dabf1;p=thirdparty%2Ftor.git Test: add missing libor.a in include.am Also add test-memwipe to .gitignore file. Signed-off-by: David Goulet --- diff --git a/.gitignore b/.gitignore index b31a7132d4..d1bdc68dec 100644 --- a/.gitignore +++ b/.gitignore @@ -167,6 +167,7 @@ cscope.* /src/test/test-slow /src/test/test-bt-cl /src/test/test-child +/src/test/test-memwipe /src/test/test-ntor-cl /src/test/test_workqueue /src/test/test.exe diff --git a/src/test/include.am b/src/test/include.am index 46fb99fc33..c0a1b374fe 100644 --- a/src/test/include.am +++ b/src/test/include.am @@ -93,7 +93,7 @@ src_test_test_workqueue_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS) src_test_test_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ \ @TOR_LDFLAGS_libevent@ src_test_test_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ - src/common/libor-crypto-testing.a $(LIBDONNA) \ + src/common/libor-crypto-testing.a $(LIBDONNA) src/common/libor.a \ src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ \ @TOR_OPENSSL_LIBS@ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ \