Only in 2.1_2/szip-2.1: .svn
Only in 2.1_2/szip-2.1: CMakeLists.txt
diff -ru 2.1_1/szip-2.1/HISTORY.txt 2.1_2/szip-2.1/HISTORY.txt
old
|
new
|
|
1 | 1 | This file contains history of SZIP library releases |
2 | 2 | |
| 3 | %%%%%SZIP 2.1%%%%% |
| 4 | |
| 5 | Relase notes for SZIP 2.1 |
| 6 | November 10, 2008 |
| 7 | |
| 8 | |
| 9 | Bug fixes: |
| 10 | |
| 11 | -- Modified a test in a configure script forcing to perform |
| 12 | a real calculation to determine if math library is needed. |
| 13 | |
| 14 | New features: |
| 15 | |
| 16 | -- None. |
| 17 | |
| 18 | Know problems: |
| 19 | |
| 20 | -- On IRIX64-6.5, shared library version 3.0 is created instead of 2.0. |
| 21 | -- There is no support for shared library on the AIX 5.* systems. |
| 22 | |
| 23 | User support: |
| 24 | Report all problems to help@hdfgroup.org. |
| 25 | For more information on SZIP, see: |
| 26 | http://www.hdfgroup.org/doc_resource/SZIP/ |
| 27 | |
| 28 | |
3 | 29 | %%%%%SZIP 2.0%%%%% |
4 | 30 | Relase notes for SZIP 2.0 |
5 | 31 | February, 2005 |
diff -ru 2.1_1/szip-2.1/RELEASE.txt 2.1_2/szip-2.1/RELEASE.txt
old
|
new
|
|
1 | 1 | |
2 | 2 | Relase notes for SZIP 2.1 |
3 | | November 10, 2008 |
| 3 | July 14, 2010 |
4 | 4 | |
5 | 5 | |
6 | 6 | Bug fixes: |
7 | 7 | |
8 | | -- Modified a test in a configure script forcing to perform |
9 | | a real calculation to determine if math library is needed. |
| 8 | -- None. |
10 | 9 | |
11 | 10 | New features: |
12 | 11 | |
13 | | -- None. |
| 12 | -- CMake support added, which allows for shared or static builds. |
14 | 13 | |
15 | 14 | Know problems: |
16 | 15 | |
Only in 2.1_2/szip-2.1/bin: .svn
Only in 2.1_2/szip-2.1/config: .svn
Only in 2.1_2/szip-2.1/config: cmake
Only in 2.1_2/szip-2.1/examples: .svn
Only in 2.1_2/szip-2.1/examples: CMakeLists.txt
Only in 2.1_2/szip-2.1/src: .svn
Only in 2.1_2/szip-2.1/src: CMakeLists.txt
diff -ru 2.1_1/szip-2.1/src/szip_adpt.h 2.1_2/szip-2.1/src/szip_adpt.h
old
|
new
|
|
7 | 7 | #ifndef SZAPI_ADPT_H |
8 | 8 | #define SZAPI_ADPT_H |
9 | 9 | |
| 10 | /* This will only be defined if szip was built with CMake shared libs*/ |
| 11 | #ifdef SZ_BUILT_AS_DYNAMIC_LIB |
| 12 | |
| 13 | #if defined (szip_EXPORTS) |
| 14 | #define _SZDLL_ |
| 15 | #if defined (_MSC_VER) /* MSVC Compiler Case */ |
| 16 | #define __SZ_DLL__ __declspec(dllexport) |
| 17 | /* #define __DLLVARH425__ __declspec(dllexport)*/ |
| 18 | #elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */ |
| 19 | #define __SZ_DLL__ __attribute__ ((visibility("default"))) |
| 20 | /* #define __DLLVARH425__ extern __attribute__ ((visibility("default"))) */ |
| 21 | #endif |
| 22 | #else |
| 23 | #define _SZUSEDLL_ |
| 24 | #if defined (_MSC_VER) /* MSVC Compiler Case */ |
| 25 | #define __SZ_DLL__ __declspec(dllimport) |
| 26 | /* #define __DLLVARH425__ __declspec(dllimport)*/ |
| 27 | #elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */ |
| 28 | #define __SZ_DLL__ __attribute__ ((visibility("default"))) |
| 29 | /* #define __DLLVARH425__ extern __attribute__ ((visibility("default"))) */ |
| 30 | #endif |
| 31 | #endif |
| 32 | |
| 33 | #else /* SZ_BUILT_AS_DYNAMIC_LIB */ |
| 34 | /* This is the original HDFGroup defined preprocessor code */ |
| 35 | |
10 | 36 | #if defined(WIN32) && !defined(__MWERKS__) |
11 | 37 | #if defined(_SZDLL_) |
12 | 38 | #pragma warning(disable: 4273) /* Disable the dll linkage warnings */ |
… |
… |
|
25 | 51 | /*#define __DLLVAR__ extern*/ |
26 | 52 | #endif |
27 | 53 | |
| 54 | #endif /* SZ_BUILT_AS_DYNAMIC_LIB */ |
| 55 | |
28 | 56 | #endif /* H5API_ADPT_H */ |