nokolexbor 0.2.2 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/nokolexbor/CMakeLists.txt +92 -0
- data/ext/nokolexbor/config.h.cmake.in +26 -0
- data/ext/nokolexbor/extconf.rb +17 -8
- data/ext/nokolexbor/libxml/{xmlversion.h → xmlversion.h.in} +41 -41
- data/ext/nokolexbor/nl_document.c +12 -4
- data/ext/nokolexbor/nl_node.c +66 -56
- data/ext/nokolexbor/nl_node_set.c +43 -22
- data/ext/nokolexbor/nl_xpath_context.c +78 -18
- data/ext/nokolexbor/nokolexbor.h +2 -0
- data/ext/nokolexbor/xml_error.c +225 -27
- data/lib/nokolexbor/node.rb +2 -2
- data/lib/nokolexbor/node_set.rb +5 -1
- data/lib/nokolexbor/version.rb +1 -1
- data/lib/nokolexbor/xpath.rb +69 -0
- data/lib/nokolexbor.rb +1 -0
- metadata +26 -9
- data/ext/nokolexbor/config.h +0 -186
data/ext/nokolexbor/config.h
DELETED
@@ -1,186 +0,0 @@
|
|
1
|
-
/* config.h. Generated from config.h.in by configure. */
|
2
|
-
/* config.h.in. Generated from configure.ac by autoheader. */
|
3
|
-
|
4
|
-
/* A form that will not confuse apibuild.py */
|
5
|
-
#define ATTRIBUTE_DESTRUCTOR __attribute__((destructor))
|
6
|
-
|
7
|
-
/* Define to 1 if you have the <arpa/inet.h> header file. */
|
8
|
-
#define HAVE_ARPA_INET_H 1
|
9
|
-
|
10
|
-
/* Define if __attribute__((destructor)) is accepted */
|
11
|
-
#define HAVE_ATTRIBUTE_DESTRUCTOR 1
|
12
|
-
|
13
|
-
/* Define to 1 if you have the <dlfcn.h> header file. */
|
14
|
-
#define HAVE_DLFCN_H 1
|
15
|
-
|
16
|
-
/* Have dlopen based dso */
|
17
|
-
#define HAVE_DLOPEN /**/
|
18
|
-
|
19
|
-
/* Define to 1 if you have the <dl.h> header file. */
|
20
|
-
/* #undef HAVE_DL_H */
|
21
|
-
|
22
|
-
/* Define to 1 if you have the <fcntl.h> header file. */
|
23
|
-
#define HAVE_FCNTL_H 1
|
24
|
-
|
25
|
-
/* Define to 1 if you have the `ftime' function. */
|
26
|
-
#define HAVE_FTIME 1
|
27
|
-
|
28
|
-
/* Define to 1 if you have the `gettimeofday' function. */
|
29
|
-
#define HAVE_GETTIMEOFDAY 1
|
30
|
-
|
31
|
-
/* Define to 1 if you have the <glob.h> header file. */
|
32
|
-
#define HAVE_GLOB_H 1
|
33
|
-
|
34
|
-
/* Define to 1 if you have the <inttypes.h> header file. */
|
35
|
-
#define HAVE_INTTYPES_H 1
|
36
|
-
|
37
|
-
/* Define to 1 if you have the `isascii' function. */
|
38
|
-
#define HAVE_ISASCII 1
|
39
|
-
|
40
|
-
/* Define if history library is there (-lhistory) */
|
41
|
-
/* #undef HAVE_LIBHISTORY */
|
42
|
-
|
43
|
-
/* Define if readline library is there (-lreadline) */
|
44
|
-
/* #undef HAVE_LIBREADLINE */
|
45
|
-
|
46
|
-
/* Define to 1 if you have the <lzma.h> header file. */
|
47
|
-
/* #undef HAVE_LZMA_H */
|
48
|
-
|
49
|
-
/* Define to 1 if you have the `mmap' function. */
|
50
|
-
#define HAVE_MMAP 1
|
51
|
-
|
52
|
-
/* Define to 1 if you have the `munmap' function. */
|
53
|
-
#define HAVE_MUNMAP 1
|
54
|
-
|
55
|
-
/* mmap() is no good without munmap() */
|
56
|
-
#if defined(HAVE_MMAP) && !defined(HAVE_MUNMAP)
|
57
|
-
# undef /**/ HAVE_MMAP
|
58
|
-
#endif
|
59
|
-
|
60
|
-
/* Define to 1 if you have the <netdb.h> header file. */
|
61
|
-
#define HAVE_NETDB_H 1
|
62
|
-
|
63
|
-
/* Define to 1 if you have the <netinet/in.h> header file. */
|
64
|
-
#define HAVE_NETINET_IN_H 1
|
65
|
-
|
66
|
-
/* Define to 1 if you have the <poll.h> header file. */
|
67
|
-
#define HAVE_POLL_H 1
|
68
|
-
|
69
|
-
/* Define to 1 if you have the <pthread.h> header file. */
|
70
|
-
#define HAVE_PTHREAD_H /**/
|
71
|
-
|
72
|
-
/* Define to 1 if you have the `putenv' function. */
|
73
|
-
#define HAVE_PUTENV 1
|
74
|
-
|
75
|
-
/* Define to 1 if you have the `rand_r' function. */
|
76
|
-
#define HAVE_RAND_R 1
|
77
|
-
|
78
|
-
/* Have shl_load based dso */
|
79
|
-
/* #undef HAVE_SHLLOAD */
|
80
|
-
|
81
|
-
/* Define to 1 if you have the `snprintf' function. */
|
82
|
-
#define HAVE_SNPRINTF 1
|
83
|
-
|
84
|
-
/* Define to 1 if you have the `stat' function. */
|
85
|
-
#define HAVE_STAT 1
|
86
|
-
|
87
|
-
/* Define to 1 if you have the <stdint.h> header file. */
|
88
|
-
#define HAVE_STDINT_H 1
|
89
|
-
|
90
|
-
/* Define to 1 if you have the <stdio.h> header file. */
|
91
|
-
#define HAVE_STDIO_H 1
|
92
|
-
|
93
|
-
/* Define to 1 if you have the <stdlib.h> header file. */
|
94
|
-
#define HAVE_STDLIB_H 1
|
95
|
-
|
96
|
-
/* Define to 1 if you have the <strings.h> header file. */
|
97
|
-
#define HAVE_STRINGS_H 1
|
98
|
-
|
99
|
-
/* Define to 1 if you have the <string.h> header file. */
|
100
|
-
#define HAVE_STRING_H 1
|
101
|
-
|
102
|
-
/* Define to 1 if you have the <sys/mman.h> header file. */
|
103
|
-
#define HAVE_SYS_MMAN_H 1
|
104
|
-
|
105
|
-
/* Define to 1 if you have the <sys/select.h> header file. */
|
106
|
-
#define HAVE_SYS_SELECT_H 1
|
107
|
-
|
108
|
-
/* Define to 1 if you have the <sys/socket.h> header file. */
|
109
|
-
#define HAVE_SYS_SOCKET_H 1
|
110
|
-
|
111
|
-
/* Define to 1 if you have the <sys/stat.h> header file. */
|
112
|
-
#define HAVE_SYS_STAT_H 1
|
113
|
-
|
114
|
-
/* Define to 1 if you have the <sys/timeb.h> header file. */
|
115
|
-
#define HAVE_SYS_TIMEB_H 1
|
116
|
-
|
117
|
-
/* Define to 1 if you have the <sys/time.h> header file. */
|
118
|
-
#define HAVE_SYS_TIME_H 1
|
119
|
-
|
120
|
-
/* Define to 1 if you have the <sys/types.h> header file. */
|
121
|
-
#define HAVE_SYS_TYPES_H 1
|
122
|
-
|
123
|
-
/* Define to 1 if you have the <unistd.h> header file. */
|
124
|
-
#define HAVE_UNISTD_H 1
|
125
|
-
|
126
|
-
/* Whether va_copy() is available */
|
127
|
-
#define HAVE_VA_COPY 1
|
128
|
-
|
129
|
-
/* Define to 1 if you have the `vsnprintf' function. */
|
130
|
-
#define HAVE_VSNPRINTF 1
|
131
|
-
|
132
|
-
/* Define to 1 if you have the <zlib.h> header file. */
|
133
|
-
/* #undef HAVE_ZLIB_H */
|
134
|
-
|
135
|
-
/* Whether __va_copy() is available */
|
136
|
-
/* #undef HAVE___VA_COPY */
|
137
|
-
|
138
|
-
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
139
|
-
#define LT_OBJDIR ".libs/"
|
140
|
-
|
141
|
-
/* Name of package */
|
142
|
-
#define PACKAGE "libxml2"
|
143
|
-
|
144
|
-
/* Define to the address where bug reports for this package should be sent. */
|
145
|
-
#define PACKAGE_BUGREPORT ""
|
146
|
-
|
147
|
-
/* Define to the full name of this package. */
|
148
|
-
#define PACKAGE_NAME "libxml2"
|
149
|
-
|
150
|
-
/* Define to the full name and version of this package. */
|
151
|
-
#define PACKAGE_STRING "libxml2 2.11.0"
|
152
|
-
|
153
|
-
/* Define to the one symbol short name of this package. */
|
154
|
-
#define PACKAGE_TARNAME "libxml2"
|
155
|
-
|
156
|
-
/* Define to the home page for this package. */
|
157
|
-
#define PACKAGE_URL ""
|
158
|
-
|
159
|
-
/* Define to the version of this package. */
|
160
|
-
#define PACKAGE_VERSION "2.11.0"
|
161
|
-
|
162
|
-
/* Define to 1 if all of the C90 standard headers exist (not just the ones
|
163
|
-
required in a freestanding environment). This macro is provided for
|
164
|
-
backward compatibility; new code need not use it. */
|
165
|
-
#define STDC_HEADERS 1
|
166
|
-
|
167
|
-
/* Support for IPv6 */
|
168
|
-
#define SUPPORT_IP6 /**/
|
169
|
-
|
170
|
-
/* Define if va_list is an array type */
|
171
|
-
#define VA_LIST_IS_ARRAY 1
|
172
|
-
|
173
|
-
/* Version number of package */
|
174
|
-
#define VERSION "2.11.0"
|
175
|
-
|
176
|
-
/* Determine what socket length (socklen_t) data type is */
|
177
|
-
#define XML_SOCKLEN_T socklen_t
|
178
|
-
|
179
|
-
/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
|
180
|
-
<pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
|
181
|
-
#define below would cause a syntax error. */
|
182
|
-
/* #undef _UINT32_T */
|
183
|
-
|
184
|
-
/* Define to the type of an unsigned integer type of width exactly 32 bits if
|
185
|
-
such a type exists and the standard includes do not define it. */
|
186
|
-
/* #undef uint32_t */
|