tarruby 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (85) hide show
  1. data/README.txt +99 -0
  2. data/ext/extconf.rb +19 -0
  3. data/ext/libtar/COPYRIGHT +35 -0
  4. data/ext/libtar/ChangeLog +243 -0
  5. data/ext/libtar/ChangeLog-1.0.x +141 -0
  6. data/ext/libtar/INSTALL +183 -0
  7. data/ext/libtar/Makefile.in +51 -0
  8. data/ext/libtar/README +121 -0
  9. data/ext/libtar/TODO +10 -0
  10. data/ext/libtar/autoconf/ac_path_generic.m4 +136 -0
  11. data/ext/libtar/autoconf/aclocal.m4 +199 -0
  12. data/ext/libtar/autoconf/encap.m4 +133 -0
  13. data/ext/libtar/autoconf/install-sh +251 -0
  14. data/ext/libtar/autom4te.cache/output.0 +8102 -0
  15. data/ext/libtar/autom4te.cache/requests +112 -0
  16. data/ext/libtar/autom4te.cache/traces.0 +382 -0
  17. data/ext/libtar/compat/ChangeLog +31 -0
  18. data/ext/libtar/compat/README +12 -0
  19. data/ext/libtar/compat/TODO +4 -0
  20. data/ext/libtar/compat/basename.c +91 -0
  21. data/ext/libtar/compat/compat.h +260 -0
  22. data/ext/libtar/compat/dirname.c +96 -0
  23. data/ext/libtar/compat/fnmatch.c +237 -0
  24. data/ext/libtar/compat/gethostbyname_r.c +41 -0
  25. data/ext/libtar/compat/gethostname.c +36 -0
  26. data/ext/libtar/compat/getservbyname_r.c +41 -0
  27. data/ext/libtar/compat/glob.c +898 -0
  28. data/ext/libtar/compat/inet_aton.c +27 -0
  29. data/ext/libtar/compat/module.ac +591 -0
  30. data/ext/libtar/compat/snprintf.c +788 -0
  31. data/ext/libtar/compat/strdup.c +62 -0
  32. data/ext/libtar/compat/strlcat.c +72 -0
  33. data/ext/libtar/compat/strlcpy.c +68 -0
  34. data/ext/libtar/compat/strmode.c +199 -0
  35. data/ext/libtar/compat/strrstr.c +40 -0
  36. data/ext/libtar/compat/strsep.c +87 -0
  37. data/ext/libtar/config.h.in +187 -0
  38. data/ext/libtar/configure +8102 -0
  39. data/ext/libtar/configure.ac +114 -0
  40. data/ext/libtar/doc/Makefile.in +152 -0
  41. data/ext/libtar/doc/tar_append_file.3 +50 -0
  42. data/ext/libtar/doc/tar_block_read.3 +24 -0
  43. data/ext/libtar/doc/tar_extract_all.3 +43 -0
  44. data/ext/libtar/doc/tar_extract_file.3 +84 -0
  45. data/ext/libtar/doc/tar_open.3 +97 -0
  46. data/ext/libtar/doc/th_get_pathname.3 +63 -0
  47. data/ext/libtar/doc/th_print_long_ls.3 +22 -0
  48. data/ext/libtar/doc/th_read.3 +34 -0
  49. data/ext/libtar/doc/th_set_from_stat.3 +45 -0
  50. data/ext/libtar/lib/Makefile.in +92 -0
  51. data/ext/libtar/lib/append.c +272 -0
  52. data/ext/libtar/lib/block.c +384 -0
  53. data/ext/libtar/lib/decode.c +130 -0
  54. data/ext/libtar/lib/encode.c +237 -0
  55. data/ext/libtar/lib/extract.c +656 -0
  56. data/ext/libtar/lib/handle.c +150 -0
  57. data/ext/libtar/lib/internal.h +46 -0
  58. data/ext/libtar/lib/libtar.h +311 -0
  59. data/ext/libtar/lib/output.c +146 -0
  60. data/ext/libtar/lib/util.c +153 -0
  61. data/ext/libtar/lib/wrapper.c +175 -0
  62. data/ext/libtar/libtar/Makefile.in +73 -0
  63. data/ext/libtar/libtar/libtar.c +363 -0
  64. data/ext/libtar/listhash/ChangeLog +15 -0
  65. data/ext/libtar/listhash/TODO +21 -0
  66. data/ext/libtar/listhash/hash.c.in +344 -0
  67. data/ext/libtar/listhash/hash_new.3.in +74 -0
  68. data/ext/libtar/listhash/list.c.in +458 -0
  69. data/ext/libtar/listhash/list_new.3.in +86 -0
  70. data/ext/libtar/listhash/listhash.h.in +196 -0
  71. data/ext/libtar/listhash/module.ac +21 -0
  72. data/ext/libtar/win32/config.h +190 -0
  73. data/ext/libtar/win32/dirent.c +115 -0
  74. data/ext/libtar/win32/dirent.h +24 -0
  75. data/ext/libtar/win32/grp.h +4 -0
  76. data/ext/libtar/win32/listhash/libtar_hash.c +344 -0
  77. data/ext/libtar/win32/listhash/libtar_list.c +458 -0
  78. data/ext/libtar/win32/listhash/libtar_listhash.h +196 -0
  79. data/ext/libtar/win32/pwd.h +4 -0
  80. data/ext/libtar/win32/sys/param.h +8 -0
  81. data/ext/libtar/win32/tar.h +35 -0
  82. data/ext/libtar/win32/utime.h +6 -0
  83. data/ext/libtar/win32/win32/types.h +10 -0
  84. data/ext/tarruby.c +648 -0
  85. metadata +150 -0
@@ -0,0 +1,187 @@
1
+ /* config.h.in. Generated from configure.ac by autoheader. */
2
+
3
+ /* Define if your system has a working basename */
4
+ #undef HAVE_BASENAME
5
+
6
+ /* Define to 1 if you have the <ctype.h> header file. */
7
+ #undef HAVE_CTYPE_H
8
+
9
+ /* Define to 1 if the system has the type `dev_t'. */
10
+ #undef HAVE_DEV_T
11
+
12
+ /* Define if your system has a working dirname */
13
+ #undef HAVE_DIRNAME
14
+
15
+ /* Define to 1 if your system has a working POSIX `fnmatch' function. */
16
+ #undef HAVE_FNMATCH
17
+
18
+ /* Define to 1 if you have the <fnmatch.h> header file. */
19
+ #undef HAVE_FNMATCH_H
20
+
21
+ /* Define to 1 if you have the <inttypes.h> header file. */
22
+ #undef HAVE_INTTYPES_H
23
+
24
+ /* Define to 1 if you have the `lchown' function. */
25
+ #undef HAVE_LCHOWN
26
+
27
+ /* Define to 1 if you have the <libgen.h> header file. */
28
+ #undef HAVE_LIBGEN_H
29
+
30
+ /* Define to 1 if you have the `z' library (-lz). */
31
+ #undef HAVE_LIBZ
32
+
33
+ /* Define to 1 if the system has the type `major_t'. */
34
+ #undef HAVE_MAJOR_T
35
+
36
+ /* Define to 1 if you have the <memory.h> header file. */
37
+ #undef HAVE_MEMORY_H
38
+
39
+ /* Define to 1 if the system has the type `minor_t'. */
40
+ #undef HAVE_MINOR_T
41
+
42
+ /* Define to 1 if the system has the type `nlink_t'. */
43
+ #undef HAVE_NLINK_T
44
+
45
+ /* Define if your system has a working snprintf */
46
+ #undef HAVE_SNPRINTF
47
+
48
+ /* Define to 1 if the system has the type `socklen_t'. */
49
+ #undef HAVE_SOCKLEN_T
50
+
51
+ /* Define to 1 if you have the <stdint.h> header file. */
52
+ #undef HAVE_STDINT_H
53
+
54
+ /* Define to 1 if you have the <stdlib.h> header file. */
55
+ #undef HAVE_STDLIB_H
56
+
57
+ /* Define if you have the strdup function */
58
+ #undef HAVE_STRDUP
59
+
60
+ /* Define to 1 if you have the `strftime' function. */
61
+ #undef HAVE_STRFTIME
62
+
63
+ /* Define to 1 if you have the <strings.h> header file. */
64
+ #undef HAVE_STRINGS_H
65
+
66
+ /* Define to 1 if you have the <string.h> header file. */
67
+ #undef HAVE_STRING_H
68
+
69
+ /* Define if you have the strlcpy function */
70
+ #undef HAVE_STRLCPY
71
+
72
+ /* Define if you have the strmode function */
73
+ #undef HAVE_STRMODE
74
+
75
+ /* Define if you have the strsep function */
76
+ #undef HAVE_STRSEP
77
+
78
+ /* Define to 1 if you have the <sys/stat.h> header file. */
79
+ #undef HAVE_SYS_STAT_H
80
+
81
+ /* Define to 1 if you have the <sys/types.h> header file. */
82
+ #undef HAVE_SYS_TYPES_H
83
+
84
+ /* Define to 1 if the system has the type `uint64_t'. */
85
+ #undef HAVE_UINT64_T
86
+
87
+ /* Define to 1 if you have the <unistd.h> header file. */
88
+ #undef HAVE_UNISTD_H
89
+
90
+ /* Define to 1 if `major', `minor', and `makedev' are declared in <mkdev.h>.
91
+ */
92
+ #undef MAJOR_IN_MKDEV
93
+
94
+ /* Define to 1 if `major', `minor', and `makedev' are declared in
95
+ <sysmacros.h>. */
96
+ #undef MAJOR_IN_SYSMACROS
97
+
98
+ /* Define as 1 if makedev expects three arguments */
99
+ #undef MAKEDEV_THREE_ARGS
100
+
101
+ /* Define if you want to use the basename function */
102
+ #undef NEED_BASENAME
103
+
104
+ /* Define if you want to use the dirname function */
105
+ #undef NEED_DIRNAME
106
+
107
+ /* Define if you want to use the fnmatch function */
108
+ #undef NEED_FNMATCH
109
+
110
+ /* Define if you want to use the makedev function */
111
+ #undef NEED_MAKEDEV
112
+
113
+ /* Define if you want to use the snprintf function */
114
+ #undef NEED_SNPRINTF
115
+
116
+ /* Define if you want to use the strdup function */
117
+ #undef NEED_STRDUP
118
+
119
+ /* Define if you want to use the strlcpy function */
120
+ #undef NEED_STRLCPY
121
+
122
+ /* Define if you want to use the strmode function */
123
+ #undef NEED_STRMODE
124
+
125
+ /* Define if you want to use the strsep function */
126
+ #undef NEED_STRSEP
127
+
128
+ /* Define to the address where bug reports for this package should be sent. */
129
+ #undef PACKAGE_BUGREPORT
130
+
131
+ /* Define to the full name of this package. */
132
+ #undef PACKAGE_NAME
133
+
134
+ /* Define to the full name and version of this package. */
135
+ #undef PACKAGE_STRING
136
+
137
+ /* Define to the one symbol short name of this package. */
138
+ #undef PACKAGE_TARNAME
139
+
140
+ /* Define to the version of this package. */
141
+ #undef PACKAGE_VERSION
142
+
143
+ /* Define to 1 if you have the ANSI C header files. */
144
+ #undef STDC_HEADERS
145
+
146
+ /* Define to 1 if on AIX 3.
147
+ System headers sometimes define this.
148
+ We just want to avoid a redefinition error message. */
149
+ #ifndef _ALL_SOURCE
150
+ # undef _ALL_SOURCE
151
+ #endif
152
+
153
+ /* Define to empty if `const' does not conform to ANSI C. */
154
+ #undef const
155
+
156
+ /* Define to `unsigned long' if not defined in system header files. */
157
+ #undef dev_t
158
+
159
+ /* Define to `int' if <sys/types.h> doesn't define. */
160
+ #undef gid_t
161
+
162
+ /* Define to `unsigned int' if not defined in system header files. */
163
+ #undef major_t
164
+
165
+ /* Define to `unsigned int' if not defined in system header files. */
166
+ #undef minor_t
167
+
168
+ /* Define to `int' if <sys/types.h> does not define. */
169
+ #undef mode_t
170
+
171
+ /* Define to `unsigned short' if not defined in system header files. */
172
+ #undef nlink_t
173
+
174
+ /* Define to `long' if <sys/types.h> does not define. */
175
+ #undef off_t
176
+
177
+ /* Define to `unsigned' if <sys/types.h> does not define. */
178
+ #undef size_t
179
+
180
+ /* Define to `unsigned long' if not defined in system header files. */
181
+ #undef socklen_t
182
+
183
+ /* Define to `int' if <sys/types.h> doesn't define. */
184
+ #undef uid_t
185
+
186
+ /* Define to `long long' if not defined in system header files. */
187
+ #undef uint64_t