diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-09-02 18:27:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-09-02 18:27:09 +0000 |
commit | 4c799ae7311afa29dde472a0f84a56bac44333f1 (patch) | |
tree | 5f132cc01e1d75d895a08f6d85220dcad3127f64 /src/or | |
parent | f311206d1db3bb88f686cfb52a4c503e97cbe249 (diff) | |
download | tor-4c799ae7311afa29dde472a0f84a56bac44333f1.tar tor-4c799ae7311afa29dde472a0f84a56bac44333f1.tar.gz |
Check for zlib; link with it.
svn:r2326
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/Makefile.am b/src/or/Makefile.am index a071bceba..a1b956b4a 100644 --- a/src/or/Makefile.am +++ b/src/or/Makefile.am @@ -12,7 +12,7 @@ tor_SOURCES = buffers.c circuitbuild.c circuitlist.c \ rendservice.c rephist.c router.c routerlist.c routerparse.c \ tor_main.c -tor_LDADD = ../common/libor.a +tor_LDADD = ../common/libor.a -lz test_SOURCES = buffers.c circuitbuild.c circuitlist.c \ circuituse.c command.c config.c \ @@ -22,7 +22,7 @@ test_SOURCES = buffers.c circuitbuild.c circuitlist.c \ rendservice.c rephist.c router.c routerlist.c routerparse.c \ test.c -test_LDADD = ../common/libor.a +test_LDADD = ../common/libor.a -lz noinst_HEADERS = or.h tree.h |