diff -ur szip-2.1/COPYING szip-2.1-new/COPYING
old
|
new
|
|
35 | 35 | |
36 | 36 | For commercial use license to SZIP compression software routines and |
37 | 37 | underlying patents, please contact ICs, LLC, at |
38 | | ICs, LLC, 2600-A E. Seltice Way #234, Post Falls, ID, 83854. |
39 | | Phone: (208) 755-8990. Fax: (208) 773-5747. |
40 | | |
| 38 | Address: ICs, LLC, 2040 Warren Wagon Road, P.O. Box 2236 |
| 39 | McCall, ID 83638 |
| 40 | Phone: (208) 315-2877. Fax: (208) 634-7720. |
| 41 | Email: support@ics4chips.com |
41 | 42 | |
diff -ur szip-2.1/INSTALL szip-2.1-new/INSTALL
old
|
new
|
|
96 | 96 | FreeBSD (32 and 64-bit) |
97 | 97 | Linux 2.6 32-bit and 64-bit |
98 | 98 | Mac OSX |
99 | | Windows P |
| 99 | Windows |
100 | 100 | AIX 5.3 and 5.2 (32 and 64-bit) |
101 | 101 | Altix SGI |
102 | 102 | HPUX 11.23 |
diff -ur szip-2.1/RELEASE.txt szip-2.1-new/RELEASE.txt
old
|
new
|
|
1 | 1 | |
2 | 2 | Relase notes for SZIP 2.1 |
3 | | August 20, 2007 |
| 3 | November 10, 2008 |
4 | 4 | |
5 | 5 | |
6 | 6 | Bug fixes: |
7 | 7 | |
8 | | -- On some platforms configure didn't add -lm flag; fixed. |
| 8 | -- Modified a test in a configure script forcing to perform |
| 9 | a real calculation to determine if math library is needed. |
9 | 10 | |
10 | 11 | New features: |
11 | 12 | |
12 | | -- Configure was updated to use GNU autotools version 1.5.14. |
| 13 | -- None. |
13 | 14 | |
14 | 15 | Know problems: |
15 | 16 | |
diff -ur szip-2.1/configure szip-2.1-new/configure
old
|
new
|
|
19496 | 19496 | int |
19497 | 19497 | main () |
19498 | 19498 | { |
19499 | | sinh(37.927) |
| 19499 | volatile x = 37.927; k=1.2; sinh(x*k/cosh(x/k) |
19500 | 19500 | ; |
19501 | 19501 | return 0; |
19502 | 19502 | } |
diff -ur szip-2.1/configure.ac szip-2.1-new/configure.ac
old
|
new
|
|
158 | 158 | # ====================================================================== |
159 | 159 | |
160 | 160 | AC_MSG_CHECKING([for math library support]) |
161 | | AC_TRY_LINK([#include <math.h>], [sinh(37.927)], |
| 161 | AC_TRY_LINK([#include <math.h>], [volatile x = 37.927; k=1.2; sinh(x*k/cosh(x/k)], |
162 | 162 | [AC_MSG_RESULT([yes])], |
163 | 163 | [AC_MSG_RESULT([no]); LIBS="$LIBS -lm"]) |
164 | 164 | |
diff -ur szip-2.1/src/szlib.h szip-2.1-new/src/szlib.h
old
|
new
|
|
42 | 42 | #include "ricehdf.h" |
43 | 43 | #include "szip_adpt.h" |
44 | 44 | |
45 | | #define SZLIB_VERSION "2.0" |
| 45 | #define SZLIB_VERSION "2.1" |
46 | 46 | |
47 | 47 | /* |
48 | 48 | The application must update next_in and avail_in when avail_in has |