Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Define kwsys_ios_binary macro for std::ios::binary | Brad King | 2009-08-31 | 1 | -0/+11 |
| | | | | | | | | The 'binary' openmode does not exist on all compilers. We define macro <kwsys>_ios_binary, where <kwsys> is the KWSys namespace, to refer to std::ios::binary if it exists and 0 otherwise. Sample usage: kwsys_ios::ifstream fin(fn, kwsys_ios::ios::in | kwsys_ios_binary); | ||||
* | BUG: Enable large files only if <cstdio> works | Brad King | 2009-07-27 | 1 | -0/+8 |
| | | | | | | | | | | | Some AIX/gcc version combinations the <cstdio> header breaks when large file support is enabled. See this GCC issue for details: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20366 We work around the problem by enhancing the configuration check for large file support to include <cstdio> when available. This will cause LFS to be disabled when the above problem occurs. | ||||
* | STYLE: Work-around std:: check since this is a platform test. | Brad King | 2008-01-31 | 1 | -4/+4 |
| | |||||
* | COMP: Make sure gcc 2.96 sstream header is not used. | Brad King | 2007-04-20 | 1 | -0/+3 |
| | |||||
* | ENH: Renamed kwsysPlatformCxxTests to kwsysPlatformTests and generalized it ↵ | Brad King | 2006-10-04 | 1 | -0/+439 |
for multiple language tests (C and CXX). |