summaryrefslogtreecommitdiffstats
path: root/windows_vnet/hl
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove ↵Scott Wegner2008-06-0256-65/+65
| | | | | | | | | | | | | | | | | ignored system library, standardize program debug information, and unify Windows h5tinit Description: These changes are made via a user's suggestion, bugzilla bug #1164. These have all been tested in the trunk, and are stable/favorable changes. In many of our project files on Windows, we have our linker setting set to ignore old link libraries-- either libc.lib or libcd.lib. This is a relic from converting project files from old versions of Visual Studio to newer ones, and is unnecessary. We remove the ignored library from the project files. This actually makes no difference in the output binaries. In our debug project configurations, many of the projects were generating debug information for "Program Database and Edit & Continue". Other projects were using different settings, or none at all. We standardize to use "Program Database" setting, because it generates much smaller .obj files and cuts out unnecessary debug information. Previously, there was Windows-dependent code inside H5detect.c, because not all projects could access the gethostname() function. However, we standardize our project-files to link with WS2_32.lib, so now this function is available. Thus, the Windows-specific code has been removed from H5detect.c. Tested: VS2005 on WinXP VS.NET on WinXP
* [svn-r14669] Purpose: Remove old project files and folders to bring MANIFEST ↵Scott Wegner2008-02-2510-1760/+0
| | | | | | | up-to-date Description: Somehow these folders didn't get deleted in a previous checkin. This should bring things up-to-date
* [svn-r14668] Purpose: Backport of added Windows HL examples from trunkScott Wegner2008-02-2541-15/+6157
| | | | | Description: The Windows suite of examples for HL C was a very small subset of the examples that exist for other platforms. Now we have all of the HL C examples-- integrated into the VS projects files, and batch test scripts.
* [svn-r14436] Purpose: Fix minor bug in VS.NET project fileScott Wegner2008-01-161-1/+1
| | | | | | | | Description: It seems that during the conversion, one project (h52gifdll) began using the wrong Runtime-library settings. This was causing Link errors for only the Release DLL build. This has been fixed now. Tested: VS.NET on WinXP
* [svn-r14428] Purpose: Rename vs6 folder to vnetScott Wegner2008-01-1628-0/+4890
Description: We are removing VS6 support in HDF5 1.8, so our windows_vs6 folder now becomes windows_vnet.