~ubuntu-branches/debian/experimental/libtorrent/experimental

« back to all changes in this revision

Viewing changes to scripts/checks.m4

  • Committer: Bazaar Package Importer
  • Author(s): Qingning Huo
  • Date: 2006-01-12 20:47:33 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060112204733-pblm1cm6srb4layq
Tags: 0.8.2-1
* New upstream release.
- Fixed a crash when changing file priorities (Closes: #347429)
* Build with g++-3.4, (because rtorrent crashes if built with
  g++-4.0). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
 
175
175
AC_DEFUN([TORRENT_WITH_POSIX_FALLOCATE], [
176
176
  AC_ARG_WITH(posix-fallocate,
177
 
    [  --with-fallocate        Check for posix_fallocate],
 
177
    [  --with-posix-fallocate  Check for and use posix_fallocate to allocate files.],
178
178
    [
179
 
      if test "$withval" = "no"; then
 
179
      if test "$withval" = "yes"; then
180
180
        TORRENT_CHECK_POSIX_FALLOCATE
181
181
      fi
182
182
    ])