diff options
author | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-08-22 18:57:50 (GMT) |
---|---|---|
committer | Fang Guo <fangguo@ncsa.uiuc.edu> | 2005-08-22 18:57:50 (GMT) |
commit | 7cd3b94df2f43b4dc91aefddcef94cc4faed8874 (patch) | |
tree | 746a0ef29878c7c15ba0a328b6dcf5f9a56be78a /windows/src | |
parent | 80a9a3df0ca8270c694fcbefc302f417aa4ccaf4 (diff) | |
download | hdf5-7cd3b94df2f43b4dc91aefddcef94cc4faed8874.zip hdf5-7cd3b94df2f43b4dc91aefddcef94cc4faed8874.tar.gz hdf5-7cd3b94df2f43b4dc91aefddcef94cc4faed8874.tar.bz2 |
[svn-r11287] Purpose:
Maintenance on Windows
Description:
Fix typoes
H5_HAVE__SNPRINTF should be H5_HAVE_SNPRINTF
Solution:
Platforms tested:
Misc. update:
Diffstat (limited to 'windows/src')
-rwxr-xr-x | windows/src/H5pubconf.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/windows/src/H5pubconf.h b/windows/src/H5pubconf.h index 7b8fa93..a450af9 100755 --- a/windows/src/H5pubconf.h +++ b/windows/src/H5pubconf.h @@ -56,10 +56,10 @@ in the file file_io.win32.c and including it on the projects #define H5_HAVE_LONGJMP 1 #define H5_HAVE_SIGACTION 1 #define H5_HAVE_SIGNAL 1 -#define H5_HAVE__SNPRINTF 1 +#define H5_HAVE_SNPRINTF 1 #define H5_HAVE_STRDUP 1 #define H5_HAVE_SYSTEM 1 -#define H5_HAVE__VSNPRINTF 1 +#define H5_HAVE_VSNPRINTF 1 #define H5_HAVE_IO_H 1 #define H5_HAVE_SETJMP_H 1 #define H5_HAVE_STDDEF_H 1 @@ -121,7 +121,8 @@ in the file file_io.win32.c and including it on the projects /*Users want to build and test hdf5 library with thread safe enabled, Make the following block active */ -/* + +/* (Remove the comment signs to enable thread safe on windows) #if defined _DLL #define H5_HAVE_THREADSAFE 1 #define H5_HAVE_SYSTEM_SCOPE_THREADS 1 |