~ubuntu-branches/ubuntu/raring/ecasound2.2/raring

« back to all changes in this revision

Viewing changes to libecasound/audioio-cdr.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Junichi Uekawa
  • Date: 2009-05-06 15:18:46 UTC
  • mfrom: (5.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090506151846-dvp8mirqmxwhve66
Tags: 2.6.0-1
* New upstream release
- 08_fix_header_install: remove
- 07_configure_in_maintainer_mode: update
- do not install manpage copies, and just install symlinks for
  ecatools.1
* Build-Depend on texlive-latex-recommended too for ecrm1000 font.
  (closes: #526535)

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
    off_t curpos_rep = pos * frame_size();
139
139
    DBC_CHECK(curpos_rep >= 0);
140
140
/* fseeko doesn't seem to work with glibc 2.1.x */
141
 
#if _LARGEFILE_SOURCE
 
141
#if _FILE_OFFSET_BITS==64
142
142
    off_t seekpos = 0;
143
143
    off_t seekstep = 0;
144
144
    int whence = SEEK_SET;