summaryrefslogtreecommitdiffstats
path: root/windows/src
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r17343] Snapshot version 1.9 release 44Larry Knox2009-08-121-3/+3
|
* [svn-r17159] Snapshot version 1.9 release 43Larry Knox2009-07-061-3/+3
|
* [svn-r17135] Snapshot version 1.9 release 42Larry Knox2009-07-011-3/+3
|
* [svn-r17047] Snapshot version 1.9 release 41Larry Knox2009-06-141-3/+3
|
* [svn-r17012] Snapshot version 1.9 release 40Larry Knox2009-06-071-3/+3
|
* [svn-r16995] Snapshot version 1.9 release 39Larry Knox2009-06-011-3/+3
|
* [svn-r16738] Snapshot version 1.9 release 38Larry Knox2009-04-111-3/+3
|
* [svn-r16704] Snapshot version 1.9 release 37Larry Knox2009-04-081-3/+3
|
* [svn-r16650] Snapshot version 1.9 release 36Larry Knox2009-04-011-3/+3
|
* [svn-r16579] Snapshot version 1.9 release 35Larry Knox2009-03-151-3/+3
|
* [svn-r16553] Snapshot version 1.9 release 34Larry Knox2009-03-081-3/+3
|
* [svn-r16525] Snapshot version 1.9 release 33HDF Tester2009-03-011-3/+3
|
* [svn-r16506] Snapshot version 1.9 release 32HDF Tester2009-02-221-3/+3
|
* [svn-r16484] Snapshot version 1.9 release 31HDF Tester2009-02-151-3/+3
|
* [svn-r16453] Snapshot version 1.9 release 30HDF Tester2009-02-081-3/+3
|
* [svn-r16412] testh5ls.bat - added tests to match script file from rev 16310Allen Byrne2009-02-031-0/+4
| | | | | | | | | h5repack.bat - added test to match script file from rev 16402 set_extent.vcproj - added WS2_32.lib for change to set_extent from rev 16406 h5pubconf.h - added C99 undef to sync with *nix configuration Tested: Vista32, XP32, XP64 using VNET, VS2005 VS2008
* [svn-r16397] Snapshot version 1.9 release 29HDF Tester2009-02-011-3/+3
|
* [svn-r16344] Snapshot version 1.9 release 28HDF Tester2009-01-251-3/+3
|
* [svn-r16329] Snapshot version 1.9 release 27HDF Tester2009-01-181-3/+3
|
* [svn-r16220] Snapshot version 1.9 release 26HDF Tester2008-12-281-3/+3
|
* [svn-r16138] Snapshot version 1.9 release 25HDF Tester2008-11-301-3/+3
|
* [svn-r16121] Snapshot version 1.9 release 24HDF Tester2008-11-231-3/+3
|
* [svn-r16078] Snapshot version 1.9 release 23HDF Tester2008-11-161-3/+3
|
* [svn-r16044] Snapshot version 1.9 release 22HDF Tester2008-11-091-3/+3
|
* [svn-r16018] Snapshot version 1.9 release 21HDF Tester2008-11-021-3/+3
|
* [svn-r15953] Snapshot version 1.9 release 20HDF Tester2008-10-261-3/+3
|
* [svn-r15943] Changed the library's macros H5_USE_16_API to ↵Raymond Lu2008-10-241-1/+1
| | | | | | | | | H5_USE_16_API_DEFAULT avoid possible conflict wi th user's definition of H5_USE_16_API. The H5_USE_16_API_DEFAULT is defined through configure with the flag --with-default-api-version=v16. Tested with h5committest.
* [svn-r15713] Snapshot version 1.9 release 19HDF Tester2008-09-281-3/+3
|
* [svn-r15667] Snapshot version 1.9 release 18HDF Tester2008-09-211-3/+3
|
* [svn-r15656] Purpose: fix bug 1286Neil Fortner2008-09-181-0/+3
| | | | | | Description: Added configure test to see if pointer alignment restrictions are enforced (as in dereferencing an unaligned pointer causes an error). Added code in H5Tvlen.c to avoid dereferencing unaligned pointers, conditionally compiled based on the configure test. Added test case in dtypes.c which would previously cause such machines to fail. Tested: kagiso, smirom, linew (h5committest); linew64
* [svn-r15639] Purpose: Check for __func__ keyword during configureScott Wegner2008-09-171-0/+3
| | | | | | | | | | Description: In some of the new H5EA* code, many new C99 features are being used. Most of them are portable to all compilers, but the __func__ keyword in particular isn't supported in Visual Studio on Windows. Instead, Windows defines the __FUNCTION__ keyword, which can be used as a direct substitute. We now check for the __func__ keyword during configure and define the feature flag H5_HAVE_C99_FUNC. There was previously a check for __FUNCTION__, and the feature flags H5_HAVE_FUNCTION. In H5EApkg.h, we check for the presents of each of these in order to see which to use. If neither are avaiable, fail. Tested: h5committest (kagiso, smirom, linew)
* [svn-r15619] Snapshot version 1.9 release 17HDF Tester2008-09-141-3/+3
|
* [svn-r15595] Snapshot version 1.9 release 16HDF Tester2008-09-071-3/+3
|
* [svn-r15565] Snapshot version 1.9 release 15HDF Tester2008-08-311-3/+3
|
* [svn-r15476] Snapshot version 1.9 release 14HDF Tester2008-08-171-3/+3
|
* [svn-r15455] Snapshot version 1.9 release 13HDF Tester2008-08-101-3/+3
|
* [svn-r15438] Purpose: Bring the Windows H5pubconf.h up-to-dateScott Wegner2008-08-061-151/+614
| | | | | | | | | | | | | | Description: This commit is a major update to the Windows-maintained H5pubconf.h file. This file is statically-distributed because Windows cannot generate it dynamically as other platforms do. Previously, our Windows version contained a minimal subset of the macro definitions required. To update, I've gone through each macro (based on kagiso's output), and tested for the correct value on Windows. This allows us to better target code based on feature flags. It should also be easier to update in the future as changes are made to the configure script. This commit also contains one small bug fix in h5ls.c. Some Windows-specific code was missing a local variable definition. The bug went unnoticed because Windows didn't define the feature flag correctly. I've also made changes to the h5vers script. Whenever the version string is incremented (automatically by h5test after a snapshot), the strings in H5pubconf.h will also be updated. Tested: VS2005 on WinXP (32- and 64-bit) VS.NET on WinXP 32-bit h5vers tested under Cygwin
* [svn-r15183] Purpose: _WIN32 macro cleanupScott Wegner2008-06-091-1/+2
| | | | | | | | | | Description: As part of our Windows cleanup, we try to remove windows-specific tweaks in the source code. There are many instances where Windows code is introduces via ifdef's. We re-evaluate whether they are still required, and found that many of them are not. Others we change to "feature"-specific code, rather than Windows-specific. Tested: VS2005 on WinXP VS.NET on WinXP h5committest (kagisopp, smirom, linew)
* [svn-r15126] Purpose: Cleanup unneeded Windows sourceScott Wegner2008-06-021-569/+0
| | | | | | | | | | | | Description: Previously, we maintained some source files that are commonly generated dynamically on other systems. Now, we also generate them on Windows as well. We should remove them from the repository so old versions are not accidentally used. Also, clean up the project files to organize generator programs. Tested: VS2005 on WinXP VS2005 on WinXP x64 VS.NET on WinXP
* [svn-r14903] Undoing change committed in r14902.Scot Breitenfeld2008-04-301-0/+4
|
* [svn-r14902] Merged fortran_1_8 branch changes r14505:14901 into the trunk. ↵Scot Breitenfeld2008-04-301-4/+0
| | | | New fortran wrappers added.
* [svn-r14839] Purpose: Add new Windows macro for links testScott Wegner2008-04-141-0/+4
| | | | | | | | Description: Many new path-specific tests have been added via the "links" test. Because Windows' path format is non-standard, we need a special macro defined to handle it specially. Note that 2 tests still fail with this macro defined, but it should be fixed soon. Tested: VS2005 on WinXP
* [svn-r13916] Purpose: Fix MinGW inconsistencyScott Wegner2007-06-261-10/+0
| | | | | | | | | | Description: Windows does not accept the buffer size parameter of setvbuf to be less than 2. Previously, we had our fix split between two files, H5private.h and the Windows H5pubconf.h. This was a problem for MinGW, because it generates its own H5private.h. This moves the fix out of H5pubconf.h and into H5private.h. This shouldn't affect other platforms. Tested: MinGW on WinXP
* [svn-r13873] Purpose: Code cleanupScott Wegner2007-06-181-0/+7
| | | | | | | | | | Description: Changed a macro in H5FDwindows.c from IO_BUF_SIZE to a more specific WINDOWS_MAX_BUF, and moved it to our H5pubconf.h, where users can customize it to their own preference. This value is needed because of a bug in the Windows _write function, it is unsafe to write buffers larger than 2GB-1 bytes in one write. Tested: VS2005 on WinXP.
* [svn-r13868] Updated the Windows static h5pubconf.h to use our new Windows ↵Scott Wegner2007-06-151-1/+1
| | | | | | | | | | file driver by default. After thorough testing, we think the windows driver is ready to be included. I've also updated our Windows documentation file to include 64-bit instructions. The process is fairly tedious right now, but we hope to make it more straight-forward when we depreciate 6.0 and re-work our project files. Tested: 32-bit WinXP: VS6, VS.NET, and VS 2005 64-bit WinXP: VS.NET and VS 2005
* [svn-r13863] Added H5FDwindows.c to Windows project files, although sec2 is ↵Scott Wegner2007-06-141-3/+9
| | | | | | | | | still the default. Also added a Windows-specific macro, WINDOWS_USE_STDIO, which users can define if they'd like the Windows VFD to use the buffered low-level I/O functions. This is instead of splitting our Windows driver into two separate drivers. By default, this macro is undefined. Tested: VS6 on WinXP
* [svn-r13852] Added includes in various places to make it possible to set ↵Scott Wegner2007-06-113-1046/+7
| | | | | | | windows as the default vfd. Although sec2 is still default on Windows, it should now be possible to switch by simply changing H5pubconf.h . Tested: .NET 2003 on WinXP
* [svn-r13851] Further updates to our Windows file driver to make it ↵Scott Wegner2007-06-111-81/+121
| | | | | | compatible with both .NET and VS2005. Still needs extensive testing before it's ready.
* [svn-r13834] Addition work on the Windows file driver for 64-bit ↵Scott Wegner2007-06-052-113/+57
| | | | | | | | | compatibility, as well as making it compatible for .NET 2003 and VS 6.0. Defined additional macros in H5pubconf.h. Note that these changes are still not built by default, so shouldn't affect anyone else. Tested: VS2005 on WinXP
* [svn-r13830] Updating our locally-maintained H5pubconf.h for Windows to ↵Scott Wegner2007-06-041-1/+9
| | | | | | | define the H5_CLEAR_MEMORY macro introduced in rev. 13815. Tested: VS2005 on WinXP