summaryrefslogtreecommitdiffstats
path: root/mkspecs/common/posix/qplatformdefs.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year to 2011.Jason McDonald2011-01-101-1/+1
| | | | Reviewed-by: Trust Me
* readdir64 is not available on HP-UXJoão Abecasis2010-02-121-1/+3
| | | | | | | | | | Instead, 64-bit inode numbers in dirent are documented to be truncated. Oh, well. New define QT_NO_READDIR64 allows blacklisting other platforms that support open64 and friends, but not readdir64. Reviewed-by: Thiago Macieira
* Use X/Open LFS extensions for 64-bit support on directory iterationJoão Abecasis2010-01-291-0/+16
| | | | | | | | | | | | This boils down to using readdir64(_r) and struct dirent64 where available. I assumed these are available in the same platforms other such extensions are already being used. AIX uses the additional type DIR64 and opendir64/closedir64 to manipulate it. Task-number: QTBUG-2781 Reviewed-by: Thiago Macieira
* Refactor common POSIX support out of individual qplatformdefs.hJoão Abecasis2010-01-221-0/+144
POSIX header incorporates previously refactored X/Open LFS extensions. Reviewed-by: Thiago Macieira