Commit Graph

29 Commits

Author SHA1 Message Date
Allen Byrne
a8bd5d03e9 [svn-r18424] Upgraded all project files to VS2008.
Changed batch files by removing VS2005 and IVF91 options.
Added libsettings project to behave like h5tinit.vcproj.
Updated Manifest
2010-03-18 16:31:30 -05:00
Allen Byrne
7370d9d648 [svn-r18423] Add windows define BIND_TO_CURRENT_VCLIBS_VERSION=1 to project files 2010-03-18 15:18:08 -05:00
Quincey Koziol
a608820193 [svn-r18422] Description:
Bring r18413:18420 from trunk to 1.8 branch:
	- unify srcdir query, etc.
	- Move libhdf5.settings string out of H5Tinit.c

Tested on:
        FreeBSD/32 6.3 (duty) in debug mode
        FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode
        Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x,
                w/C++ & FORTRAN, w/threadsafe, in debug mode
        Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x,
                w/C++ & FORTRAN, in production mode
        Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN,
                w/szip filter, in production mode
        Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN,
                in production mode
        Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode
        Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode
        Mac OS X/32 10.6.2 (amazon) in debug mode
        Mac OS X/32 10.6.2 (amazon) w/C++ & FORTRAN, w/threadsafe,
                in production mode
2010-03-18 13:05:13 -05:00
Allen Byrne
5e4ca64616 [svn-r17727] Updated the errorlevel checking for better error handling in the windows batch files. 2009-10-22 16:24:15 -05:00
Scott Wegner
8953ecfe9d [svn-r15120] Purpose: Ignore Windows POSIX-Depreciation warnings in Visual Studio 2005
Description:
On Windows, we receive many compiler warnings because Microsoft has implemented many "security-enhanced" versions of POSIX functions.  However, the old versions still exist, so the warnings can be ignored.  By setting a preprocessor definition, we can disable many of these warnings.  On a typical HDF5 build, this reduces the number of warnings from ~1500 to ~600

Tested:
VS2005 on WinXP
2008-06-02 11:14:56 -05:00
Scott Wegner
c65d5ffe8d [svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove 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
2008-06-02 10:36:55 -05:00
Scott Wegner
43bb1ba8e5 [svn-r14138] 2007-09-10 14:14:08 -05:00
Scott Wegner
2ab6b11aaf [svn-r14093] Purpose: Convert Windows projects to VS2005 format and support 64-bit Fortran
Description:
This checkin is another Windows project cleanup, and also extends our Windows support for 64-bit Fortran.  Project files are now in VS2005 format, rather than VS.NET.  A couple projects have been renamed to be more descriptive (*cstub rather than *_lib), and project settings make better use of build macros.  This will make them much easier to update in the future.

Tested:
VS2005 on WinXP 32-bit
VS2005 on WinXP x64
2007-08-16 13:28:20 -05:00
Scott Wegner
e2477c8d0b [svn-r14036] Purpose: Fix Windows debug DLL naming scheme
Description:
At a previous seminar, it was brought up that the naming scheme for Windows debug DLL is inconsistent.  Specifically, some use *ddll, while others use *dlld.  *dlld is more widely-used, so we decided this is "correct".  This changes others to use this scheme, and adapts other projects / install scripts / documentation.

Tested:
Visual Studio .NET on WinXP
2007-08-03 09:44:44 -05:00
Scott Wegner
7f22651492 [svn-r14034] Purpose: Remove forced symbol "gethostname@8" from Windows projects
Description:
Previously, we needed to force symbol definition "gethostname@8" for compatibility with old versions of Visual Studio.  It appears that Visual Studio no longer requires this, so we remove it.  This makes the build process on 64-bit much smoother.

Also minor updates to main documentation, command-line documentation, and removed codewarrior and INTEL docs.

Tested:
VS.NET
VS2005
chkmanifest
2007-08-02 15:06:31 -05:00
Scott Wegner
6f175a8ff2 [svn-r13922] Purpose: First step in VS6 Depreciation
Desciption:
This is the first major check-in in the process of depreciating Visual Studio 6.0.  We create a new directory, windows_vs6, which now holds all of our previous VS6 project files.  We expect to maintain this directory for only a short time (perhaps one release), so users have time to make the change.

The ./windows directory now contains project files for Visual Studio .Net, as well as existing source and test scripts.  This will allow us to greatly simplify the build process for the majority of our users.

We have created a new solution (.Net equivolent of workspace) that houses the Fortran project files.  This allowed us to remove these files from the main solution, as well as streamline the conversion in the Fortran solution.  It is also much easier now to convert to Visual Studio 2005 files.

Notes:
I didn't update the MANIFEST with this check-in, I will make those changes shortly.  
Also, I haven't yet updated the documentation to reflect this check-in.  That is going to require more work.
We will be giving a seminar in the coming weeks about .Net and how to migrate over.

Tested:
VS6/VNET/VS2005 on WinXP 32/64-bit
2007-06-27 14:13:45 -05:00
Scott Wegner
159fe4b610 [svn-r13667] Added Windows hl test script for gif2hf and h52gif testing to bring up to date with Linux. Updated MANIFEST for new file added.
Tested:

VS6 on Windows XP
2007-04-15 11:01:38 -05:00
Albert Cheng
26b908439d [svn-r13258] Updated copyright notice in Windows batch files. 2007-02-07 13:28:45 -05:00
MuQun Yang
46e41daa62 [svn-r12690] h5test.h and libtest.a are needed for high level test projects. Windows projects need to be updated.
Test with MSVS 6.0
2006-09-27 17:18:49 -05:00
Quincey Koziol
b69cf7ea84 [svn-r12464] Changed "eol-style" property on all Windows-specific files to be "CRLF"
instead of "native".
2006-07-14 00:41:50 -05:00
Fang Guo
74e97fa905 [svn-r11661] Purpose:
add in copyright notice
Description:

Solution:

Platforms tested:

Misc. update:
2005-11-01 14:03:19 -05:00
Fang Guo
4c2143054d [svn-r11126] Purpose:
Improvement
Description:
high level dll tests added
Solution:

Platforms tested:

Misc. update:
2005-07-22 17:04:37 -05:00
Fang Guo
dd3c6ad6da [svn-r11125] Purpose:
Improvement
Description:
Add high level dll table test project file
Solution:

Platforms tested:
MSVS 6.0 on windows XP
Misc. update:
2005-07-22 17:03:45 -05:00
Fang Guo
3fd0f93a00 [svn-r11124] Purpose:
Improvemenht
Description:
Add high level dll packet test project file
Solution:

Platforms tested:
MSVS 6.0 on windows XP
Misc. update:
2005-07-22 17:02:38 -05:00
Fang Guo
4285034fa8 [svn-r11123] Purpose:
Improvement
Description:
Add high level dll lite test project file
Solution:

Platforms tested:
MSVS 6.0 on windows XP
Misc. update:
2005-07-22 17:01:10 -05:00
Fang Guo
9f3261e510 [svn-r11122] Purpose:
Improvement
Description:
Add high level dll ds test project file
Solution:

Platforms tested:
MSVS 6.0 on windows XP
Misc. update:
2005-07-22 16:59:56 -05:00
Fang Guo
6132ce0c58 [svn-r11121] Purpose:
Improvement
Description:
Add high level dll image test project file
Solution:

Platforms tested:
MSVS 6.0 on windows xp
Misc. update:
2005-07-22 16:58:49 -05:00
Fang Guo
10c3a9a2d3 [svn-r10853] Purpose:
Add test of new added high level project files.
Description:
Add test of hl_test_ds.dsp and hl_test_packet.dsp
Solution:

Platforms tested:

Misc. update:
2005-06-03 14:15:24 -05:00
Fang Guo
9a7d3f7d3a [svn-r10852] Purpose:
Add new high level test project file.
Description:
Add high level test packet project file into windows/hl/test
Solution:

Platforms tested:
MSVS 6.0 on windows XP.
Misc. update:
2005-06-03 14:11:56 -05:00
Fang Guo
5a411fc412 [svn-r10851] Purpose:
Add high level test project file
Description:
Add high level test ds project file into windows/hl/test
Solution:

Platforms tested:
MSVS 6.0 on windows XP.
Misc. update:
2005-06-03 14:09:53 -05:00
Fang Guo
9b070ebdcf [svn-r10394] Purpose:
For windows support, remove all.zip from hdf5.
Description:
Add test_hdf5_hl.BAT
Solution:

Platforms tested:

Misc. update:
2005-03-23 13:50:55 -05:00
Fang Guo
65683cae83 [svn-r10393] Purpose:
For windows support, remove all.zip from hdf5.
Description:
Add hl_test_table high level test project file.
Solution:

Platforms tested:
MSVS 6.0 on windows xp.
Misc. update:
2005-03-23 13:43:14 -05:00
Fang Guo
f6900e84f1 [svn-r10392] Purpose:
For windows support, remove all.zip from hdf5.
Description:
Add hl_test_lite high level test project file.
Solution:

Platforms tested:
MSVS 6.0 on windows xp.
Misc. update:
2005-03-23 13:41:18 -05:00
Fang Guo
d8f0576037 [svn-r10391] Purpose:
For windows support, remove all.zip from hdf5.
Description:
Add hl_test_image high level test project file.
Solution:

Platforms tested:
MSVS 6.0 on windows xp.
Misc. update:
2005-03-23 13:39:36 -05:00