aboutsummaryrefslogtreecommitdiff
path: root/src/or/include.am
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2012-12-06 12:07:58 -0500
committerNick Mathewson <nickm@torproject.org>2013-01-03 11:29:47 -0500
commitd907fca29b188be5c8eaf01d086bac754bace400 (patch)
treee2731bf1ce066d8aedc7a5d1dd19bfe15b433546 /src/or/include.am
parentef13bf44327464c5600fdba12726fce00156d2b2 (diff)
downloadtor-d907fca29b188be5c8eaf01d086bac754bace400.tar
tor-d907fca29b188be5c8eaf01d086bac754bace400.tar.gz
Make libcurve25519_donna get built as a .a
This lets us give it compiler flags differing from the rest of libor-crypto.a
Diffstat (limited to 'src/or/include.am')
-rw-r--r--src/or/include.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/include.am b/src/or/include.am
index 600f9d5ca..08a27e17b 100644
--- a/src/or/include.am
+++ b/src/or/include.am
@@ -95,7 +95,8 @@ AM_CPPFLAGS += -DSHARE_DATADIR="\"$(datadir)\"" \
src_or_tor_LDFLAGS = @TOR_LDFLAGS_zlib@ @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@
-src_or_tor_LDADD = src/or/libtor.a src/common/libor.a src/common/libor-crypto.a \
+src_or_tor_LDADD = src/or/libtor.a src/common/libor.a \
+ src/common/libor-crypto.a $(LIBDONNA) \
src/common/libor-event.a \
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
@TOR_LIB_WS32@ @TOR_LIB_GDI@