Commit 1a3e88ca099bb066a61dcfd0711fdb3b3bfe3eb0

Authored by Jay Berkenbilt
1 parent fb14dc58

Fix large file support for 32-bit Linux

libqpdf/Pl_StdioFile.cc
  1 +#include <qpdf/qpdf-config.h> // include first for large file support
1 2 #include <qpdf/Pl_StdioFile.hh>
2 3 #include <qpdf/QUtil.hh>
3 4 #include <stdexcept>
... ...
libqpdf/QPDF.cc
  1 +#include <qpdf/qpdf-config.h> // include first for large file support
1 2 #include <qpdf/QPDF.hh>
2 3  
3 4 #include <vector>
... ...
libqpdf/QPDFWriter.cc
  1 +#include <qpdf/qpdf-config.h> // include first for large file support
1 2 #include <qpdf/QPDFWriter.hh>
2 3  
3 4 #include <assert.h>
... ...
qpdf/test_large_file.cc
  1 +// NOTE: This test program doesn't do anything special to enable large
  2 +// file support. This is important since it verifies that programs
  3 +// don't have to do anything special -- all the work is done
  4 +// internally by the library as long as they don't do their own file
  5 +// I/O.
  6 +
1 7 #include <qpdf/QPDF.hh>
2 8 #include <qpdf/QPDFWriter.hh>
3 9 #include <qpdf/QPDFObjectHandle.hh>
... ...