libmspack 0.10.1.2 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/ext/libmspack/ChangeLog +145 -0
  4. data/ext/libmspack/INSTALL +3 -3
  5. data/ext/libmspack/Makefile.am +7 -4
  6. data/ext/libmspack/Makefile.in +265 -147
  7. data/ext/libmspack/README +3 -2
  8. data/ext/libmspack/aclocal.m4 +111 -113
  9. data/ext/libmspack/ar-lib +10 -9
  10. data/ext/libmspack/compile +9 -8
  11. data/ext/libmspack/config.guess +887 -613
  12. data/ext/libmspack/config.h.in +6 -9
  13. data/ext/libmspack/config.sub +1349 -1260
  14. data/ext/libmspack/configure +3035 -2490
  15. data/ext/libmspack/configure.ac +3 -3
  16. data/ext/libmspack/depcomp +4 -4
  17. data/ext/libmspack/install-sh +107 -74
  18. data/ext/libmspack/libmscabd.la +1 -1
  19. data/ext/libmspack/libmschmd.la +1 -1
  20. data/ext/libmspack/libmspack.la +1 -1
  21. data/ext/libmspack/ltmain.sh +156 -61
  22. data/ext/libmspack/m4/libtool.m4 +19 -12
  23. data/ext/libmspack/missing +8 -8
  24. data/ext/libmspack/mspack/cabd.c +21 -19
  25. data/ext/libmspack/mspack/chm.h +3 -2
  26. data/ext/libmspack/mspack/chmd.c +137 -57
  27. data/ext/libmspack/mspack/kwajd.c +29 -29
  28. data/ext/libmspack/mspack/lzx.h +0 -1
  29. data/ext/libmspack/mspack/lzxd.c +30 -154
  30. data/ext/libmspack/mspack/macros.h +64 -0
  31. data/ext/libmspack/mspack/mszipd.c +7 -18
  32. data/ext/libmspack/mspack/qtmd.c +3 -5
  33. data/ext/libmspack/mspack/readbits.h +14 -5
  34. data/ext/libmspack/mspack/readhuff.h +26 -21
  35. data/ext/libmspack/mspack/system.c +0 -5
  36. data/ext/libmspack/mspack/system.h +20 -67
  37. data/ext/libmspack/test-driver +16 -11
  38. data/ext/x86_64-linux/libmspack.so +0 -0
  39. data/ext/x86_64-windows/mspack.dll +0 -0
  40. data/lib/libmspack/version.rb +1 -1
  41. metadata +4 -3
@@ -15,15 +15,15 @@
15
15
  /* Define to 1 if you have the <inttypes.h> header file. */
16
16
  #undef HAVE_INTTYPES_H
17
17
 
18
- /* Define to 1 if you have the <memory.h> header file. */
19
- #undef HAVE_MEMORY_H
20
-
21
18
  /* Define to 1 if you have the `mkdir' function. */
22
19
  #undef HAVE_MKDIR
23
20
 
24
21
  /* Define to 1 if you have the <stdint.h> header file. */
25
22
  #undef HAVE_STDINT_H
26
23
 
24
+ /* Define to 1 if you have the <stdio.h> header file. */
25
+ #undef HAVE_STDIO_H
26
+
27
27
  /* Define to 1 if you have the <stdlib.h> header file. */
28
28
  #undef HAVE_STDLIB_H
29
29
 
@@ -78,7 +78,9 @@
78
78
  /* The size of `off_t', as computed by sizeof. */
79
79
  #undef SIZEOF_OFF_T
80
80
 
81
- /* Define to 1 if you have the ANSI C header files. */
81
+ /* Define to 1 if all of the C90 standard headers exist (not just the ones
82
+ required in a freestanding environment). This macro is provided for
83
+ backward compatibility; new code need not use it. */
82
84
  #undef STDC_HEADERS
83
85
 
84
86
  /* Version number of package */
@@ -96,11 +98,6 @@
96
98
  # endif
97
99
  #endif
98
100
 
99
- /* Enable large inode numbers on Mac OS X 10.5. */
100
- #ifndef _DARWIN_USE_64_BIT_INODE
101
- # define _DARWIN_USE_64_BIT_INODE 1
102
- #endif
103
-
104
101
  /* Number of bits in a file offset, on hosts where this is settable. */
105
102
  #undef _FILE_OFFSET_BITS
106
103