TOR: compile for 32-bit platforms

Ref #30
This commit is contained in:
Stefan Kalkowski
2016-08-26 16:44:41 +02:00
committed by Norman Feske
parent db30fc550e
commit ba95c6834f

View File

@@ -41,7 +41,6 @@ SRC_C = common/address.c \
common/util_process.c \
common/workqueue.c \
ext/csiphash.c \
ext/curve25519_donna/curve25519-donna-c64.c \
ext/ed25519/donna/ed25519_tor.c \
ext/ed25519/ref10/blinding.c \
ext/ed25519/ref10/fe_0.c \
@@ -153,4 +152,10 @@ SRC_C = common/address.c \
trunnel/link_handshake.c \
trunnel/pwbox.c
ifeq ($(filter-out $(SPECS),64bit),)
SRC_C += ext/curve25519_donna/curve25519-donna-c64.c
else
SRC_C += ext/curve25519_donna/curve25519-donna.c
endif # 64bit
vpath %.c $(TOR_DIR)/src