~ubuntu-branches/ubuntu/quantal/aria2/quantal

« back to all changes in this revision

Viewing changes to src/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Kartik Mistry
  • Date: 2011-11-08 20:25:08 UTC
  • mfrom: (2.5.7 sid)
  • Revision ID: package-import@ubuntu.com-20111108202508-scfph8rj6tz0cckk
Tags: 1.13.0-1
* New upstream version:
  + Depends on libgcrypt11 (>= 1.5.0-3) (Closes: #642989)

Show diffs side-by-side

added added

removed removed

Lines of Context:
194
194
        bitfield.cc bitfield.h\
195
195
        CreateRequestCommand.cc CreateRequestCommand.h\
196
196
        error_code.h\
197
 
        wallclock.h\
 
197
        wallclock.cc wallclock.h\
198
198
        download_helper.cc download_helper.h\
199
199
        MetadataInfo.cc MetadataInfo.h\
200
200
        SessionSerializer.cc SessionSerializer.h\
225
225
        StreamPieceSelector.h\
226
226
        DefaultStreamPieceSelector.cc DefaultStreamPieceSelector.h\
227
227
        InorderStreamPieceSelector.cc InorderStreamPieceSelector.h\
228
 
        MetalinkHttpEntry.cc MetalinkHttpEntry.h
 
228
        GeomStreamPieceSelector.cc GeomStreamPieceSelector.h\
 
229
        MetalinkHttpEntry.cc MetalinkHttpEntry.h\
 
230
        OutputFile.h\
 
231
        NullOutputFile.h\
 
232
        console.cc console.h\
 
233
        BufferedFile.cc BufferedFile.h
 
234
 
 
235
if MINGW_BUILD
 
236
SRCS += WinConsoleFile.cc WinConsoleFile.h
 
237
endif # MINGW_BUILD
229
238
 
230
239
if ENABLE_XML_RPC
231
240
SRCS += XmlRpcRequestParserController.cc XmlRpcRequestParserController.h\
258
267
endif # ENABLE_SSL
259
268
 
260
269
if HAVE_LIBGNUTLS
261
 
SRCS += LibgnutlsTLSContext.cc LibgnutlsTLSContext.h\
262
 
        LibgcryptMessageDigestImpl.cc LibgcryptMessageDigestImpl.h\
 
270
SRCS += LibgnutlsTLSContext.cc LibgnutlsTLSContext.h
 
271
endif # HAVE_LIBGNUTLS
 
272
 
 
273
if HAVE_LIBGCRYPT
 
274
SRCS += LibgcryptMessageDigestImpl.cc LibgcryptMessageDigestImpl.h\
263
275
        LibgcryptARC4Context.cc LibgcryptARC4Context.h\
264
276
        LibgcryptARC4Decryptor.cc LibgcryptARC4Decryptor.h\
265
277
        LibgcryptARC4Encryptor.cc LibgcryptARC4Encryptor.h\
266
278
        LibgcryptDHKeyExchange.cc LibgcryptDHKeyExchange.h
267
 
endif # HAVE_LIBGNUTLS
 
279
endif # HAVE_LIBGCRYPT
 
280
 
 
281
if HAVE_LIBNETTLE
 
282
SRCS += LibnettleMessageDigestImpl.cc LibnettleMessageDigestImpl.h\
 
283
        LibnettleARC4Context.cc LibnettleARC4Context.h\
 
284
        LibnettleARC4Decryptor.cc LibnettleARC4Decryptor.h\
 
285
        LibnettleARC4Encryptor.cc LibnettleARC4Encryptor.h
 
286
endif # HAVE_LIBNETTLE
 
287
 
 
288
if HAVE_LIBGMP
 
289
SRCS += a2gmp.cc a2gmp.h\
 
290
        LibgmpDHKeyExchange.cc LibgmpDHKeyExchange.h
 
291
endif # HAVE_LIBGMP
268
292
 
269
293
if HAVE_OPENSSL
270
294
SRCS += LibsslTLSContext.cc LibsslTLSContext.h\