mirror of https://github.com/aria2/aria2
2010-09-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
Fixed compile error without zlib * test/Makefile.ampull/1/head
parent
1906832f43
commit
7f92e32e48
|
@ -1,3 +1,8 @@
|
||||||
|
2010-09-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
|
Fixed compile error without zlib
|
||||||
|
* test/Makefile.am
|
||||||
|
|
||||||
2010-09-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
2010-09-13 Tatsuhiro Tsujikawa <t-tujikawa@users.sourceforge.net>
|
||||||
|
|
||||||
Fixed compile error without zlib
|
Fixed compile error without zlib
|
||||||
|
|
|
@ -73,7 +73,6 @@ aria2c_SOURCES = AllTest.cc\
|
||||||
SessionSerializerTest.cc\
|
SessionSerializerTest.cc\
|
||||||
ValueBaseTest.cc\
|
ValueBaseTest.cc\
|
||||||
ChunkedDecodingStreamFilterTest.cc\
|
ChunkedDecodingStreamFilterTest.cc\
|
||||||
GZipDecodingStreamFilterTest.cc\
|
|
||||||
UriTest.cc\
|
UriTest.cc\
|
||||||
MockSegment.h
|
MockSegment.h
|
||||||
|
|
||||||
|
@ -89,7 +88,8 @@ endif # HAVE_SOME_FALLOCATE
|
||||||
|
|
||||||
if HAVE_LIBZ
|
if HAVE_LIBZ
|
||||||
aria2c_SOURCES += GZipDecoderTest.cc\
|
aria2c_SOURCES += GZipDecoderTest.cc\
|
||||||
GZipEncoderTest.cc
|
GZipEncoderTest.cc\
|
||||||
|
GZipDecodingStreamFilterTest.cc
|
||||||
endif # HAVE_LIBZ
|
endif # HAVE_LIBZ
|
||||||
|
|
||||||
if HAVE_SQLITE3
|
if HAVE_SQLITE3
|
||||||
|
|
|
@ -42,7 +42,8 @@ check_PROGRAMS = $(am__EXEEXT_1)
|
||||||
|
|
||||||
@HAVE_SOME_FALLOCATE_TRUE@am__append_2 = FallocFileAllocationIteratorTest.cc
|
@HAVE_SOME_FALLOCATE_TRUE@am__append_2 = FallocFileAllocationIteratorTest.cc
|
||||||
@HAVE_LIBZ_TRUE@am__append_3 = GZipDecoderTest.cc\
|
@HAVE_LIBZ_TRUE@am__append_3 = GZipDecoderTest.cc\
|
||||||
@HAVE_LIBZ_TRUE@ GZipEncoderTest.cc
|
@HAVE_LIBZ_TRUE@ GZipEncoderTest.cc\
|
||||||
|
@HAVE_LIBZ_TRUE@ GZipDecodingStreamFilterTest.cc
|
||||||
|
|
||||||
@HAVE_SQLITE3_TRUE@am__append_4 = Sqlite3CookieParserTest.cc
|
@HAVE_SQLITE3_TRUE@am__append_4 = Sqlite3CookieParserTest.cc
|
||||||
@ENABLE_MESSAGE_DIGEST_TRUE@am__append_5 = MessageDigestHelperTest.cc\
|
@ENABLE_MESSAGE_DIGEST_TRUE@am__append_5 = MessageDigestHelperTest.cc\
|
||||||
|
@ -213,13 +214,12 @@ am__aria2c_SOURCES_DIST = AllTest.cc TestUtil.cc TestUtil.h \
|
||||||
LongestSequencePieceSelectorTest.cc a2algoTest.cc \
|
LongestSequencePieceSelectorTest.cc a2algoTest.cc \
|
||||||
bitfieldTest.cc DownloadContextTest.cc \
|
bitfieldTest.cc DownloadContextTest.cc \
|
||||||
SessionSerializerTest.cc ValueBaseTest.cc \
|
SessionSerializerTest.cc ValueBaseTest.cc \
|
||||||
ChunkedDecodingStreamFilterTest.cc \
|
ChunkedDecodingStreamFilterTest.cc UriTest.cc MockSegment.h \
|
||||||
GZipDecodingStreamFilterTest.cc UriTest.cc MockSegment.h \
|
|
||||||
XmlRpcRequestParserControllerTest.cc \
|
XmlRpcRequestParserControllerTest.cc \
|
||||||
XmlRpcRequestProcessorTest.cc XmlRpcMethodTest.cc \
|
XmlRpcRequestProcessorTest.cc XmlRpcMethodTest.cc \
|
||||||
FallocFileAllocationIteratorTest.cc GZipDecoderTest.cc \
|
FallocFileAllocationIteratorTest.cc GZipDecoderTest.cc \
|
||||||
GZipEncoderTest.cc Sqlite3CookieParserTest.cc \
|
GZipEncoderTest.cc GZipDecodingStreamFilterTest.cc \
|
||||||
MessageDigestHelperTest.cc \
|
Sqlite3CookieParserTest.cc MessageDigestHelperTest.cc \
|
||||||
IteratableChunkChecksumValidatorTest.cc \
|
IteratableChunkChecksumValidatorTest.cc \
|
||||||
IteratableChecksumValidatorTest.cc BtAllowedFastMessageTest.cc \
|
IteratableChecksumValidatorTest.cc BtAllowedFastMessageTest.cc \
|
||||||
BtBitfieldMessageTest.cc BtCancelMessageTest.cc \
|
BtBitfieldMessageTest.cc BtCancelMessageTest.cc \
|
||||||
|
@ -279,7 +279,8 @@ am__aria2c_SOURCES_DIST = AllTest.cc TestUtil.cc TestUtil.h \
|
||||||
@ENABLE_XML_RPC_TRUE@ XmlRpcMethodTest.$(OBJEXT)
|
@ENABLE_XML_RPC_TRUE@ XmlRpcMethodTest.$(OBJEXT)
|
||||||
@HAVE_SOME_FALLOCATE_TRUE@am__objects_2 = FallocFileAllocationIteratorTest.$(OBJEXT)
|
@HAVE_SOME_FALLOCATE_TRUE@am__objects_2 = FallocFileAllocationIteratorTest.$(OBJEXT)
|
||||||
@HAVE_LIBZ_TRUE@am__objects_3 = GZipDecoderTest.$(OBJEXT) \
|
@HAVE_LIBZ_TRUE@am__objects_3 = GZipDecoderTest.$(OBJEXT) \
|
||||||
@HAVE_LIBZ_TRUE@ GZipEncoderTest.$(OBJEXT)
|
@HAVE_LIBZ_TRUE@ GZipEncoderTest.$(OBJEXT) \
|
||||||
|
@HAVE_LIBZ_TRUE@ GZipDecodingStreamFilterTest.$(OBJEXT)
|
||||||
@HAVE_SQLITE3_TRUE@am__objects_4 = Sqlite3CookieParserTest.$(OBJEXT)
|
@HAVE_SQLITE3_TRUE@am__objects_4 = Sqlite3CookieParserTest.$(OBJEXT)
|
||||||
@ENABLE_MESSAGE_DIGEST_TRUE@am__objects_5 = \
|
@ENABLE_MESSAGE_DIGEST_TRUE@am__objects_5 = \
|
||||||
@ENABLE_MESSAGE_DIGEST_TRUE@ MessageDigestHelperTest.$(OBJEXT) \
|
@ENABLE_MESSAGE_DIGEST_TRUE@ MessageDigestHelperTest.$(OBJEXT) \
|
||||||
|
@ -407,8 +408,7 @@ am_aria2c_OBJECTS = AllTest.$(OBJEXT) TestUtil.$(OBJEXT) \
|
||||||
a2algoTest.$(OBJEXT) bitfieldTest.$(OBJEXT) \
|
a2algoTest.$(OBJEXT) bitfieldTest.$(OBJEXT) \
|
||||||
DownloadContextTest.$(OBJEXT) SessionSerializerTest.$(OBJEXT) \
|
DownloadContextTest.$(OBJEXT) SessionSerializerTest.$(OBJEXT) \
|
||||||
ValueBaseTest.$(OBJEXT) \
|
ValueBaseTest.$(OBJEXT) \
|
||||||
ChunkedDecodingStreamFilterTest.$(OBJEXT) \
|
ChunkedDecodingStreamFilterTest.$(OBJEXT) UriTest.$(OBJEXT) \
|
||||||
GZipDecodingStreamFilterTest.$(OBJEXT) UriTest.$(OBJEXT) \
|
|
||||||
$(am__objects_1) $(am__objects_2) $(am__objects_3) \
|
$(am__objects_1) $(am__objects_2) $(am__objects_3) \
|
||||||
$(am__objects_4) $(am__objects_5) $(am__objects_6) \
|
$(am__objects_4) $(am__objects_5) $(am__objects_6) \
|
||||||
$(am__objects_7)
|
$(am__objects_7)
|
||||||
|
@ -645,8 +645,7 @@ aria2c_SOURCES = AllTest.cc TestUtil.cc TestUtil.h SocketCoreTest.cc \
|
||||||
LongestSequencePieceSelectorTest.cc a2algoTest.cc \
|
LongestSequencePieceSelectorTest.cc a2algoTest.cc \
|
||||||
bitfieldTest.cc DownloadContextTest.cc \
|
bitfieldTest.cc DownloadContextTest.cc \
|
||||||
SessionSerializerTest.cc ValueBaseTest.cc \
|
SessionSerializerTest.cc ValueBaseTest.cc \
|
||||||
ChunkedDecodingStreamFilterTest.cc \
|
ChunkedDecodingStreamFilterTest.cc UriTest.cc MockSegment.h \
|
||||||
GZipDecodingStreamFilterTest.cc UriTest.cc MockSegment.h \
|
|
||||||
$(am__append_1) $(am__append_2) $(am__append_3) \
|
$(am__append_1) $(am__append_2) $(am__append_3) \
|
||||||
$(am__append_4) $(am__append_5) $(am__append_6) \
|
$(am__append_4) $(am__append_5) $(am__append_6) \
|
||||||
$(am__append_7)
|
$(am__append_7)
|
||||||
|
|
Loading…
Reference in New Issue