]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove duplicate MODULE_DIRAUTH_SOURCES from libtor_testing.a
authorNick Mathewson <nickm@torproject.org>
Mon, 18 Jun 2018 21:03:52 +0000 (17:03 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 18 Jun 2018 21:03:52 +0000 (17:03 -0400)
This was already added to LIBTOR_A_SOURCES; it doesn't need to get
added again.

Fixes bug 26402. Bugfix on 0.3.4.1-alpha.

changes/bug26402 [new file with mode: 0644]
configure.ac
src/or/include.am
src/rust/crypto/Cargo.toml
src/test/include.am

diff --git a/changes/bug26402 b/changes/bug26402
new file mode 100644 (file)
index 0000000..b21283a
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (compilation):
+    - When linking the libtor_testing.a library, only include the dirauth
+      object files once.  Previously, they were getting added twice.
+      Fixes bug 26402; bugfix on 0.3.4.1-alpha.
index 48ca5bae1404fc3025e76e694888e5628c235d77..fa889c152e97bc7bf24e827e435dc8bb9ceb61bf 100644 (file)
@@ -2274,6 +2274,7 @@ AC_CONFIG_FILES([
         src/config/torrc.sample
         src/config/torrc.minimal
         src/rust/.cargo/config
+        src/rust/build.rs
         scripts/maint/checkOptionDocs.pl
         scripts/maint/updateVersions.pl
 ])
index 0e2aac4aae08fcd2e9a02258a2e8529fa7c067e9..33d76eebd3c6c187da1ac0e1a3ffbee006794f6b 100644 (file)
@@ -131,7 +131,7 @@ endif
 
 src_or_libtor_a_SOURCES = $(LIBTOR_A_SOURCES)
 if UNITTESTS_ENABLED
-src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES) $(MODULE_DIRAUTH_SOURCES)
+src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES)
 else
 src_or_libtor_testing_a_SOURCES =
 endif
index c0c5e7bf93c57b7b54c06dfa86ff0b315d0b70d6..9d302ee3ba85e00b1b4b22cc47d03609416de822 100644 (file)
@@ -4,6 +4,7 @@ authors = ["The Tor Project",
 name = "crypto"
 version = "0.0.1"
 publish = false
+build = "../build.rs"
 
 [lib]
 name = "crypto"
@@ -26,4 +27,3 @@ rand_core = { version = "=0.2.0-pre.0", default-features = false }
 
 [features]
 testing = ["tor_log/testing"]
-
index 2ae598b224c1f133ee782dcb31b1651518958ed8..8b61e35204a6911bcff3c1a9fab57071ce07fe2a 100644 (file)
@@ -347,7 +347,7 @@ src_test_test_bt_cl_LDADD = src/common/libor-testing.a \
        src/trace/libor-trace.a \
        $(rust_ldadd) \
        @TOR_LIB_MATH@ \
-       @TOR_LIB_WS32@ @TOR_LIB_GDI@ @TOR_LIB_USERENV@ 
+       @TOR_LIB_WS32@ @TOR_LIB_GDI@ @TOR_LIB_USERENV@
 src_test_test_bt_cl_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
 src_test_test_bt_cl_CPPFLAGS= $(src_test_AM_CPPFLAGS) $(TEST_CPPFLAGS)
 
@@ -375,5 +375,5 @@ EXTRA_DIST += \
        src/test/test_workqueue_pipe2.sh \
        src/test/test_workqueue_socketpair.sh
 
-test-rust:
+test-rust: src/rust/build.rs
        $(TESTS_ENVIRONMENT) "$(abs_top_srcdir)/src/test/test_rust.sh"