mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Fix a build-warning when building out-of-tree
We were trying to incorporate all headers in common_sha1.i, not just the src/common ones. This is part of bug 6778; fix on 0.2.4.1-alpha
This commit is contained in:
parent
5d679caa32
commit
91fed2c703
3
changes/bug6778
Normal file
3
changes/bug6778
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- Avoid a warning when building common_sha1.i out of tree. Fixes bug
|
||||||
|
6778; bugfix on 0.2.4.1-alpha.
|
@ -36,7 +36,7 @@ src_common_libor_crypto_a_SOURCES = \
|
|||||||
|
|
||||||
src_common_libor_event_a_SOURCES = src/common/compat_libevent.c
|
src_common_libor_event_a_SOURCES = src/common/compat_libevent.c
|
||||||
|
|
||||||
noinst_HEADERS+= \
|
COMMONHEADERS = \
|
||||||
src/common/address.h \
|
src/common/address.h \
|
||||||
src/common/aes.h \
|
src/common/aes.h \
|
||||||
src/common/ciphers.inc \
|
src/common/ciphers.inc \
|
||||||
@ -57,13 +57,15 @@ noinst_HEADERS+= \
|
|||||||
src/common/tortls.h \
|
src/common/tortls.h \
|
||||||
src/common/util.h
|
src/common/util.h
|
||||||
|
|
||||||
|
noinst_HEADERS+= $(COMMONHEADERS)
|
||||||
|
|
||||||
DISTCLEANFILES+= src/common/common_sha1.i
|
DISTCLEANFILES+= src/common/common_sha1.i
|
||||||
|
|
||||||
src/common/common_sha1.i: $(libor_SOURCES) $(libor_crypto_a_SOURCES) $(noinst_HEADERS)
|
src/common/common_sha1.i: $(libor_SOURCES) $(libor_crypto_a_SOURCES) $(COMMONHEADERS)
|
||||||
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
||||||
(cd "$(srcdir)" && "@SHA1SUM@" $(src_common_libor_SOURCES) $(src_common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' > $@; \
|
(cd "$(srcdir)" && "@SHA1SUM@" $(src_common_libor_SOURCES) $(src_common_libor_crypto_a_SOURCES) $(COMMONHEADERS)) | "@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' > $@; \
|
||||||
elif test "@OPENSSL@" != none; then \
|
elif test "@OPENSSL@" != none; then \
|
||||||
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_common_libor_SOURCES) $(src_Common_libor_crypto_a_SOURCES) $(noinst_HEADERS)) | "@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' > $@; \
|
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_common_libor_SOURCES) $(src_Common_libor_crypto_a_SOURCES) $(COMMONHEADERS)) | "@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' > $@; \
|
||||||
else \
|
else \
|
||||||
rm $@; \
|
rm $@; \
|
||||||
touch $@; \
|
touch $@; \
|
||||||
|
@ -81,7 +81,7 @@ src_or_tor_LDADD = src/or/libtor.a src/common/libor.a src/common/libor-crypto.a
|
|||||||
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
|
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
|
||||||
@TOR_LIB_WS32@ @TOR_LIB_GDI@
|
@TOR_LIB_WS32@ @TOR_LIB_GDI@
|
||||||
|
|
||||||
noinst_HEADERS+= \
|
ORHEADERS = \
|
||||||
src/or/buffers.h \
|
src/or/buffers.h \
|
||||||
src/or/circuitbuild.h \
|
src/or/circuitbuild.h \
|
||||||
src/or/circuitlist.h \
|
src/or/circuitlist.h \
|
||||||
@ -122,8 +122,9 @@ noinst_HEADERS+= \
|
|||||||
src/or/router.h \
|
src/or/router.h \
|
||||||
src/or/routerlist.h \
|
src/or/routerlist.h \
|
||||||
src/or/routerparse.h \
|
src/or/routerparse.h \
|
||||||
src/or/status.h \
|
src/or/status.h
|
||||||
micro-revision.i
|
|
||||||
|
noinst_HEADERS+= $(ORHEADERS) micro-revision.i
|
||||||
|
|
||||||
src/or/config_codedigest.o: src/or/or_sha1.i
|
src/or/config_codedigest.o: src/or/or_sha1.i
|
||||||
|
|
||||||
@ -143,12 +144,12 @@ micro-revision.i: FORCE
|
|||||||
mv micro-revision.tmp micro-revision.i; \
|
mv micro-revision.tmp micro-revision.i; \
|
||||||
fi; true
|
fi; true
|
||||||
|
|
||||||
src/or/or_sha1.i: $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES)
|
src/or/or_sha1.i: $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES) $(ORHEADERS)
|
||||||
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
$(AM_V_GEN)if test "@SHA1SUM@" != none; then \
|
||||||
(cd "$(srcdir)" && "@SHA1SUM@" $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES)) | \
|
(cd "$(srcdir)" && "@SHA1SUM@" $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES) $(ORHEADERS) ) | \
|
||||||
"@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' > src/or/or_sha1.i; \
|
"@SED@" -n 's/^\(.*\)$$/"\1\\n"/p' > src/or/or_sha1.i; \
|
||||||
elif test "@OPENSSL@" != none; then \
|
elif test "@OPENSSL@" != none; then \
|
||||||
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES)) | \
|
(cd "$(srcdir)" && "@OPENSSL@" sha1 $(src_or_tor_SOURCES) $(src_or_libtor_a_SOURCES) $(ORHEADERS)) | \
|
||||||
"@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' > src/or/or_sha1.i; \
|
"@SED@" -n 's/SHA1(\(.*\))= \(.*\)/"\2 \1\\n"/p' > src/or/or_sha1.i; \
|
||||||
else \
|
else \
|
||||||
rm src/or/or_sha1.i; \
|
rm src/or/or_sha1.i; \
|
||||||
|
Loading…
Reference in New Issue
Block a user