pocxxeci 0.30.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pocxxeci might be problematic. Click here for more details.

Files changed (160) hide show
  1. package/LICENSE +19 -0
  2. package/Makefile +18 -0
  3. package/README.md +52 -0
  4. package/binding.gyp +81 -0
  5. package/index.d.ts +273 -0
  6. package/index.js +45 -0
  7. package/lib/bindings.js +1 -0
  8. package/lib/document.js +122 -0
  9. package/lib/element.js +82 -0
  10. package/lib/sax_parser.js +38 -0
  11. package/package.json +70 -0
  12. package/src/html_document.cc +7 -0
  13. package/src/html_document.h +18 -0
  14. package/src/libxmljs.cc +252 -0
  15. package/src/libxmljs.h +53 -0
  16. package/src/xml_attribute.cc +173 -0
  17. package/src/xml_attribute.h +40 -0
  18. package/src/xml_comment.cc +117 -0
  19. package/src/xml_comment.h +30 -0
  20. package/src/xml_document.cc +810 -0
  21. package/src/xml_document.h +67 -0
  22. package/src/xml_element.cc +565 -0
  23. package/src/xml_element.h +61 -0
  24. package/src/xml_namespace.cc +158 -0
  25. package/src/xml_namespace.h +39 -0
  26. package/src/xml_node.cc +761 -0
  27. package/src/xml_node.h +73 -0
  28. package/src/xml_pi.cc +161 -0
  29. package/src/xml_pi.h +34 -0
  30. package/src/xml_sax_parser.cc +424 -0
  31. package/src/xml_sax_parser.h +73 -0
  32. package/src/xml_syntax_error.cc +66 -0
  33. package/src/xml_syntax_error.h +25 -0
  34. package/src/xml_text.cc +320 -0
  35. package/src/xml_text.h +48 -0
  36. package/src/xml_textwriter.cc +315 -0
  37. package/src/xml_textwriter.h +62 -0
  38. package/src/xml_xpath_context.cc +70 -0
  39. package/src/xml_xpath_context.h +23 -0
  40. package/vendor/libxml/Copyright +23 -0
  41. package/vendor/libxml/DOCBparser.c +305 -0
  42. package/vendor/libxml/HTMLparser.c +7287 -0
  43. package/vendor/libxml/HTMLtree.c +1200 -0
  44. package/vendor/libxml/Makefile +2983 -0
  45. package/vendor/libxml/SAX.c +180 -0
  46. package/vendor/libxml/SAX2.c +3036 -0
  47. package/vendor/libxml/buf.c +1351 -0
  48. package/vendor/libxml/buf.h +72 -0
  49. package/vendor/libxml/c14n.c +2234 -0
  50. package/vendor/libxml/catalog.c +3828 -0
  51. package/vendor/libxml/chvalid.c +336 -0
  52. package/vendor/libxml/config.h +294 -0
  53. package/vendor/libxml/config.h.gch +0 -0
  54. package/vendor/libxml/debugXML.c +3423 -0
  55. package/vendor/libxml/dict.c +1298 -0
  56. package/vendor/libxml/elfgcchack.h +17818 -0
  57. package/vendor/libxml/enc.h +32 -0
  58. package/vendor/libxml/encoding.c +3975 -0
  59. package/vendor/libxml/entities.c +1163 -0
  60. package/vendor/libxml/error.c +998 -0
  61. package/vendor/libxml/globals.c +1126 -0
  62. package/vendor/libxml/hash.c +1146 -0
  63. package/vendor/libxml/include/libxml/DOCBparser.h +96 -0
  64. package/vendor/libxml/include/libxml/HTMLparser.h +306 -0
  65. package/vendor/libxml/include/libxml/HTMLtree.h +147 -0
  66. package/vendor/libxml/include/libxml/Makefile +725 -0
  67. package/vendor/libxml/include/libxml/Makefile.am +54 -0
  68. package/vendor/libxml/include/libxml/Makefile.in +725 -0
  69. package/vendor/libxml/include/libxml/SAX.h +173 -0
  70. package/vendor/libxml/include/libxml/SAX2.h +178 -0
  71. package/vendor/libxml/include/libxml/c14n.h +128 -0
  72. package/vendor/libxml/include/libxml/catalog.h +182 -0
  73. package/vendor/libxml/include/libxml/chvalid.h +230 -0
  74. package/vendor/libxml/include/libxml/debugXML.h +217 -0
  75. package/vendor/libxml/include/libxml/dict.h +79 -0
  76. package/vendor/libxml/include/libxml/encoding.h +245 -0
  77. package/vendor/libxml/include/libxml/entities.h +151 -0
  78. package/vendor/libxml/include/libxml/globals.h +508 -0
  79. package/vendor/libxml/include/libxml/hash.h +236 -0
  80. package/vendor/libxml/include/libxml/list.h +137 -0
  81. package/vendor/libxml/include/libxml/nanoftp.h +163 -0
  82. package/vendor/libxml/include/libxml/nanohttp.h +81 -0
  83. package/vendor/libxml/include/libxml/parser.h +1243 -0
  84. package/vendor/libxml/include/libxml/parserInternals.h +644 -0
  85. package/vendor/libxml/include/libxml/pattern.h +100 -0
  86. package/vendor/libxml/include/libxml/relaxng.h +217 -0
  87. package/vendor/libxml/include/libxml/schemasInternals.h +958 -0
  88. package/vendor/libxml/include/libxml/schematron.h +142 -0
  89. package/vendor/libxml/include/libxml/threads.h +89 -0
  90. package/vendor/libxml/include/libxml/tree.h +1311 -0
  91. package/vendor/libxml/include/libxml/uri.h +94 -0
  92. package/vendor/libxml/include/libxml/valid.h +458 -0
  93. package/vendor/libxml/include/libxml/xinclude.h +129 -0
  94. package/vendor/libxml/include/libxml/xlink.h +189 -0
  95. package/vendor/libxml/include/libxml/xmlIO.h +368 -0
  96. package/vendor/libxml/include/libxml/xmlautomata.h +146 -0
  97. package/vendor/libxml/include/libxml/xmlerror.h +945 -0
  98. package/vendor/libxml/include/libxml/xmlexports.h +77 -0
  99. package/vendor/libxml/include/libxml/xmlmemory.h +224 -0
  100. package/vendor/libxml/include/libxml/xmlmodule.h +57 -0
  101. package/vendor/libxml/include/libxml/xmlreader.h +428 -0
  102. package/vendor/libxml/include/libxml/xmlregexp.h +222 -0
  103. package/vendor/libxml/include/libxml/xmlsave.h +88 -0
  104. package/vendor/libxml/include/libxml/xmlschemas.h +246 -0
  105. package/vendor/libxml/include/libxml/xmlschemastypes.h +151 -0
  106. package/vendor/libxml/include/libxml/xmlstring.h +140 -0
  107. package/vendor/libxml/include/libxml/xmlunicode.h +202 -0
  108. package/vendor/libxml/include/libxml/xmlversion.h +484 -0
  109. package/vendor/libxml/include/libxml/xmlwin32version.h +239 -0
  110. package/vendor/libxml/include/libxml/xmlwriter.h +488 -0
  111. package/vendor/libxml/include/libxml/xpath.h +564 -0
  112. package/vendor/libxml/include/libxml/xpathInternals.h +632 -0
  113. package/vendor/libxml/include/libxml/xpointer.h +114 -0
  114. package/vendor/libxml/include/win32config.h +122 -0
  115. package/vendor/libxml/include/wsockcompat.h +54 -0
  116. package/vendor/libxml/legacy.c +1343 -0
  117. package/vendor/libxml/libxml.h +134 -0
  118. package/vendor/libxml/list.c +779 -0
  119. package/vendor/libxml/nanoftp.c +2118 -0
  120. package/vendor/libxml/nanohttp.c +1899 -0
  121. package/vendor/libxml/parser.c +15553 -0
  122. package/vendor/libxml/parserInternals.c +2164 -0
  123. package/vendor/libxml/pattern.c +2621 -0
  124. package/vendor/libxml/relaxng.c +11101 -0
  125. package/vendor/libxml/rngparser.c +1595 -0
  126. package/vendor/libxml/runsuite.c +1157 -0
  127. package/vendor/libxml/save.h +36 -0
  128. package/vendor/libxml/schematron.c +1787 -0
  129. package/vendor/libxml/threads.c +1049 -0
  130. package/vendor/libxml/timsort.h +601 -0
  131. package/vendor/libxml/tree.c +10183 -0
  132. package/vendor/libxml/trio.c +6895 -0
  133. package/vendor/libxml/trio.h +230 -0
  134. package/vendor/libxml/triodef.h +228 -0
  135. package/vendor/libxml/trionan.c +914 -0
  136. package/vendor/libxml/trionan.h +84 -0
  137. package/vendor/libxml/triop.h +150 -0
  138. package/vendor/libxml/triostr.c +2112 -0
  139. package/vendor/libxml/triostr.h +144 -0
  140. package/vendor/libxml/uri.c +2561 -0
  141. package/vendor/libxml/valid.c +7138 -0
  142. package/vendor/libxml/xinclude.c +2657 -0
  143. package/vendor/libxml/xlink.c +183 -0
  144. package/vendor/libxml/xmlIO.c +4135 -0
  145. package/vendor/libxml/xmlcatalog.c +624 -0
  146. package/vendor/libxml/xmllint.c +3796 -0
  147. package/vendor/libxml/xmlmemory.c +1163 -0
  148. package/vendor/libxml/xmlmodule.c +468 -0
  149. package/vendor/libxml/xmlreader.c +6033 -0
  150. package/vendor/libxml/xmlregexp.c +8271 -0
  151. package/vendor/libxml/xmlsave.c +2735 -0
  152. package/vendor/libxml/xmlschemas.c +29173 -0
  153. package/vendor/libxml/xmlschemastypes.c +6276 -0
  154. package/vendor/libxml/xmlstring.c +1050 -0
  155. package/vendor/libxml/xmlunicode.c +3179 -0
  156. package/vendor/libxml/xmlwriter.c +4738 -0
  157. package/vendor/libxml/xpath.c +14734 -0
  158. package/vendor/libxml/xpointer.c +2969 -0
  159. package/vendor/libxml/xzlib.c +815 -0
  160. package/vendor/libxml/xzlib.h +19 -0
@@ -0,0 +1,725 @@
1
+ # Makefile.in generated by automake 1.15.1 from Makefile.am.
2
+ # include/libxml/Makefile. Generated from Makefile.in by configure.
3
+
4
+ # Copyright (C) 1994-2017 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+
16
+
17
+
18
+ am__is_gnu_make = { \
19
+ if test -z '$(MAKELEVEL)'; then \
20
+ false; \
21
+ elif test -n '$(MAKE_HOST)'; then \
22
+ true; \
23
+ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
24
+ true; \
25
+ else \
26
+ false; \
27
+ fi; \
28
+ }
29
+ am__make_running_with_option = \
30
+ case $${target_option-} in \
31
+ ?) ;; \
32
+ *) echo "am__make_running_with_option: internal error: invalid" \
33
+ "target option '$${target_option-}' specified" >&2; \
34
+ exit 1;; \
35
+ esac; \
36
+ has_opt=no; \
37
+ sane_makeflags=$$MAKEFLAGS; \
38
+ if $(am__is_gnu_make); then \
39
+ sane_makeflags=$$MFLAGS; \
40
+ else \
41
+ case $$MAKEFLAGS in \
42
+ *\\[\ \ ]*) \
43
+ bs=\\; \
44
+ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
45
+ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
46
+ esac; \
47
+ fi; \
48
+ skip_next=no; \
49
+ strip_trailopt () \
50
+ { \
51
+ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
52
+ }; \
53
+ for flg in $$sane_makeflags; do \
54
+ test $$skip_next = yes && { skip_next=no; continue; }; \
55
+ case $$flg in \
56
+ *=*|--*) continue;; \
57
+ -*I) strip_trailopt 'I'; skip_next=yes;; \
58
+ -*I?*) strip_trailopt 'I';; \
59
+ -*O) strip_trailopt 'O'; skip_next=yes;; \
60
+ -*O?*) strip_trailopt 'O';; \
61
+ -*l) strip_trailopt 'l'; skip_next=yes;; \
62
+ -*l?*) strip_trailopt 'l';; \
63
+ -[dEDm]) skip_next=yes;; \
64
+ -[JT]) skip_next=yes;; \
65
+ esac; \
66
+ case $$flg in \
67
+ *$$target_option*) has_opt=yes; break;; \
68
+ esac; \
69
+ done; \
70
+ test $$has_opt = yes
71
+ am__make_dryrun = (target_option=n; $(am__make_running_with_option))
72
+ am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
73
+ pkgdatadir = $(datadir)/libxml2
74
+ pkgincludedir = $(includedir)/libxml2
75
+ pkglibdir = $(libdir)/libxml2
76
+ pkglibexecdir = $(libexecdir)/libxml2
77
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
78
+ install_sh_DATA = $(install_sh) -c -m 644
79
+ install_sh_PROGRAM = $(install_sh) -c
80
+ install_sh_SCRIPT = $(install_sh) -c
81
+ INSTALL_HEADER = $(INSTALL_DATA)
82
+ transform = $(program_transform_name)
83
+ NORMAL_INSTALL = :
84
+ PRE_INSTALL = :
85
+ POST_INSTALL = :
86
+ NORMAL_UNINSTALL = :
87
+ PRE_UNINSTALL = :
88
+ POST_UNINSTALL = :
89
+ build_triplet = x86_64-pc-linux-gnu
90
+ host_triplet = x86_64-pc-linux-gnu
91
+ subdir = include/libxml
92
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
93
+ am__aclocal_m4_deps = $(top_srcdir)/m4/libtool.m4 \
94
+ $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
95
+ $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
96
+ $(top_srcdir)/acinclude.m4 $(top_srcdir)/configure.ac
97
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
98
+ $(ACLOCAL_M4)
99
+ DIST_COMMON = $(srcdir)/Makefile.am $(xmlinc_HEADERS) \
100
+ $(am__DIST_COMMON)
101
+ mkinstalldirs = $(install_sh) -d
102
+ CONFIG_HEADER = $(top_builddir)/config.h
103
+ CONFIG_CLEAN_FILES = xmlversion.h
104
+ CONFIG_CLEAN_VPATH_FILES =
105
+ AM_V_P = $(am__v_P_$(V))
106
+ am__v_P_ = $(am__v_P_$(AM_DEFAULT_VERBOSITY))
107
+ am__v_P_0 = false
108
+ am__v_P_1 = :
109
+ AM_V_GEN = $(am__v_GEN_$(V))
110
+ am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
111
+ am__v_GEN_0 = @echo " GEN " $@;
112
+ am__v_GEN_1 =
113
+ AM_V_at = $(am__v_at_$(V))
114
+ am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
115
+ am__v_at_0 = @
116
+ am__v_at_1 =
117
+ SOURCES =
118
+ DIST_SOURCES =
119
+ am__can_run_installinfo = \
120
+ case $$AM_UPDATE_INFO_DIR in \
121
+ n|no|NO) false;; \
122
+ *) (install-info --version) >/dev/null 2>&1;; \
123
+ esac
124
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
125
+ am__vpath_adj = case $$p in \
126
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
127
+ *) f=$$p;; \
128
+ esac;
129
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
130
+ am__install_max = 40
131
+ am__nobase_strip_setup = \
132
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
133
+ am__nobase_strip = \
134
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
135
+ am__nobase_list = $(am__nobase_strip_setup); \
136
+ for p in $$list; do echo "$$p $$p"; done | \
137
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
138
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
139
+ if (++n[$$2] == $(am__install_max)) \
140
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
141
+ END { for (dir in files) print dir, files[dir] }'
142
+ am__base_list = \
143
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
144
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
145
+ am__uninstall_files_from_dir = { \
146
+ test -z "$$files" \
147
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
148
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
149
+ $(am__cd) "$$dir" && rm -f $$files; }; \
150
+ }
151
+ am__installdirs = "$(DESTDIR)$(xmlincdir)"
152
+ HEADERS = $(xmlinc_HEADERS)
153
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
154
+ # Read a list of newline-separated strings from the standard input,
155
+ # and print each of them once, without duplicates. Input order is
156
+ # *not* preserved.
157
+ am__uniquify_input = $(AWK) '\
158
+ BEGIN { nonempty = 0; } \
159
+ { items[$$0] = 1; nonempty = 1; } \
160
+ END { if (nonempty) { for (i in items) print i; }; } \
161
+ '
162
+ # Make sure the list of sources is unique. This is necessary because,
163
+ # e.g., the same source file might be shared among _SOURCES variables
164
+ # for different programs/libraries.
165
+ am__define_uniq_tagged_files = \
166
+ list='$(am__tagged_files)'; \
167
+ unique=`for i in $$list; do \
168
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
169
+ done | $(am__uniquify_input)`
170
+ ETAGS = etags
171
+ CTAGS = ctags
172
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/xmlversion.h.in
173
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
174
+ ACLOCAL = ${SHELL} /libxml/missing aclocal-1.15
175
+ AMTAR = $${TAR-tar}
176
+ AM_DEFAULT_VERBOSITY = 0
177
+ AR = ar
178
+ AUTOCONF = ${SHELL} /libxml/missing autoconf
179
+ AUTOHEADER = ${SHELL} /libxml/missing autoheader
180
+ AUTOMAKE = ${SHELL} /libxml/missing automake-1.15
181
+ AWK = mawk
182
+ BASE_THREAD_LIBS = -lpthread
183
+ C14N_OBJ = c14n.c
184
+ CATALOG_OBJ = catalog.o
185
+ CC = gcc
186
+ CCDEPMODE = depmode=gcc3
187
+ CFLAGS = -g -O2
188
+ CPP = gcc -E
189
+ CPPFLAGS =
190
+ CYGPATH_W = echo
191
+ CYGWIN_EXTRA_LDFLAGS =
192
+ CYGWIN_EXTRA_PYTHON_LIBADD =
193
+ DEBUG_OBJ = debugXML.o
194
+ DEFS = -DHAVE_CONFIG_H
195
+ DEPDIR = .deps
196
+ DLLTOOL = false
197
+ DOCB_OBJ = DOCBparser.o
198
+ DSYMUTIL =
199
+ DUMPBIN =
200
+ ECHO_C =
201
+ ECHO_N = -n
202
+ ECHO_T =
203
+ EGREP = /bin/grep -E
204
+ EXEEXT =
205
+ EXTRA_CFLAGS = -pedantic -Wall -Wextra -Wshadow -Wpointer-arith -Wcast-align -Wwrite-strings -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wredundant-decls -Wno-long-long -Wno-format-extra-args -Wno-array-bounds
206
+ FGREP = /bin/grep -F
207
+ FTP_OBJ = nanoftp.o
208
+ GREP = /bin/grep
209
+ HAVE_ISINF =
210
+ HAVE_ISNAN =
211
+ HTML_DIR = $(datadir)/doc/$(PACKAGE)-$(VERSION)/html
212
+ HTML_OBJ = HTMLparser.o HTMLtree.o
213
+ HTTP_OBJ = nanohttp.o
214
+ ICONV_LIBS =
215
+ ICU_CFLAGS =
216
+ ICU_LIBS =
217
+ INSTALL = /usr/bin/install -c
218
+ INSTALL_DATA = ${INSTALL} -m 644
219
+ INSTALL_PROGRAM = ${INSTALL}
220
+ INSTALL_SCRIPT = ${INSTALL}
221
+ INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
222
+ LD = /usr/bin/ld -m elf_x86_64
223
+ LDFLAGS =
224
+ LIBOBJS =
225
+ LIBS =
226
+ LIBTOOL = $(SHELL) $(top_builddir)/libtool
227
+ LIBXML_MAJOR_VERSION = 2
228
+ LIBXML_MICRO_VERSION = 9
229
+ LIBXML_MINOR_VERSION = 9
230
+ LIBXML_VERSION = 2.9.9
231
+ LIBXML_VERSION_EXTRA =
232
+ LIBXML_VERSION_INFO = 11:9:9
233
+ LIBXML_VERSION_NUMBER = 20909
234
+ LIPO =
235
+ LN_S = ln -s
236
+ LTLIBOBJS =
237
+ LT_SYS_LIBRARY_PATH =
238
+ LZMA_CFLAGS =
239
+ LZMA_LIBS =
240
+ MAINT =
241
+ MAKEINFO = ${SHELL} /libxml/missing makeinfo
242
+ MANIFEST_TOOL = :
243
+ MKDIR_P = /bin/mkdir -p
244
+ MODULE_EXTENSION = .so
245
+ MODULE_PLATFORM_LIBS = -ldl
246
+ MV = /bin/mv
247
+ M_LIBS = -lm
248
+ NM = /usr/bin/nm -B
249
+ NMEDIT =
250
+ OBJDUMP = objdump
251
+ OBJEXT = o
252
+ OTOOL =
253
+ OTOOL64 =
254
+ PACKAGE = libxml2
255
+ PACKAGE_BUGREPORT =
256
+ PACKAGE_NAME =
257
+ PACKAGE_STRING =
258
+ PACKAGE_TARNAME =
259
+ PACKAGE_URL =
260
+ PACKAGE_VERSION =
261
+ PATH_SEPARATOR = :
262
+ PERL = /usr/bin/perl
263
+ PKG_CONFIG =
264
+ PKG_CONFIG_LIBDIR =
265
+ PKG_CONFIG_PATH =
266
+ PYTHON = /usr/bin/python
267
+ PYTHON_INCLUDES = /usr/include/python2.7
268
+ PYTHON_LIBS =
269
+ PYTHON_SITE_PACKAGES = /usr/lib/python2.7/dist-packages
270
+ PYTHON_SUBDIR = python
271
+ PYTHON_TESTS = RelaxNGPythonTests SchemasPythonTests
272
+ PYTHON_VERSION = 2.7
273
+ RANLIB = ranlib
274
+ RDL_LIBS =
275
+ READER_TEST = Readertests
276
+ RELDATE = Tue May 21 2019
277
+ SED = /bin/sed
278
+ SET_MAKE =
279
+ SHELL = /bin/bash
280
+ STATIC_BINARIES =
281
+ STRIP = strip
282
+ TAR = /bin/tar
283
+ TEST_C14N = C14Ntests
284
+ TEST_CATALOG = Catatests
285
+ TEST_DEBUG = Scripttests
286
+ TEST_HTML = HTMLtests
287
+ TEST_MODULES = ModuleTests
288
+ TEST_PATTERN = Patterntests
289
+ TEST_PHTML = HTMLPushtests
290
+ TEST_PUSH = XMLPushtests
291
+ TEST_REGEXPS = Regexptests Automatatests
292
+ TEST_SAX = SAXtests
293
+ TEST_SCHEMAS = Schemastests Relaxtests
294
+ TEST_SCHEMATRON = Schematrontests
295
+ TEST_THREADS = Threadtests
296
+ TEST_VALID = Validtests
297
+ TEST_VTIME = VTimingtests
298
+ TEST_XINCLUDE = XIncludetests
299
+ TEST_XPATH = XPathtests
300
+ TEST_XPTR = XPtrtests
301
+ THREAD_CFLAGS = -D_REENTRANT
302
+ THREAD_LIBS =
303
+ VERSION = 2.9.9
304
+ VERSION_SCRIPT_FLAGS = -Wl,--version-script=
305
+ WGET = /usr/bin/wget
306
+ WIN32_EXTRA_LDFLAGS =
307
+ WIN32_EXTRA_LIBADD =
308
+ WIN32_EXTRA_PYTHON_LIBADD =
309
+ WITH_C14N = 1
310
+ WITH_CATALOG = 1
311
+ WITH_DEBUG = 1
312
+ WITH_DOCB = 1
313
+ WITH_FTP = 1
314
+ WITH_HTML = 1
315
+ WITH_HTTP = 1
316
+ WITH_ICONV = 1
317
+ WITH_ICU = 0
318
+ WITH_ISO8859X = 1
319
+ WITH_LEGACY = 1
320
+ WITH_LZMA = 0
321
+ WITH_MEM_DEBUG = 0
322
+ WITH_MODULES = 1
323
+ WITH_OUTPUT = 1
324
+ WITH_PATTERN = 1
325
+ WITH_PUSH = 1
326
+ WITH_READER = 1
327
+ WITH_REGEXPS = 1
328
+ WITH_RUN_DEBUG = 0
329
+ WITH_SAX1 = 1
330
+ WITH_SCHEMAS = 1
331
+ WITH_SCHEMATRON = 1
332
+ WITH_THREADS = 1
333
+ WITH_THREAD_ALLOC = 0
334
+ WITH_TREE = 1
335
+ WITH_TRIO = 0
336
+ WITH_VALID = 1
337
+ WITH_WRITER = 1
338
+ WITH_XINCLUDE = 1
339
+ WITH_XPATH = 1
340
+ WITH_XPTR = 1
341
+ WITH_ZLIB = 0
342
+ XINCLUDE_OBJ = xinclude.o
343
+ XMLLINT = /usr/bin/xmllint
344
+ XML_CFLAGS =
345
+ XML_INCLUDEDIR = -I${includedir}/libxml2
346
+ XML_LIBDIR = -L${libdir}
347
+ XML_LIBS = -lxml2 -lm
348
+ XML_LIBTOOLLIBS = libxml2.la
349
+ XPATH_OBJ = xpath.o
350
+ XPTR_OBJ = xpointer.o
351
+ XSLTPROC = /usr/bin/xsltproc
352
+ Z_CFLAGS =
353
+ Z_LIBS =
354
+ abs_builddir = /libxml/include/libxml
355
+ abs_srcdir = /libxml/include/libxml
356
+ abs_top_builddir = /libxml
357
+ abs_top_srcdir = /libxml
358
+ ac_ct_AR = ar
359
+ ac_ct_CC = gcc
360
+ ac_ct_DUMPBIN =
361
+ am__include = include
362
+ am__leading_dot = .
363
+ am__quote =
364
+ am__tar = $${TAR-tar} chof - "$$tardir"
365
+ am__untar = $${TAR-tar} xf -
366
+ bindir = ${exec_prefix}/bin
367
+ build = x86_64-pc-linux-gnu
368
+ build_alias =
369
+ build_cpu = x86_64
370
+ build_os = linux-gnu
371
+ build_vendor = pc
372
+ builddir = .
373
+ datadir = ${datarootdir}
374
+ datarootdir = ${prefix}/share
375
+ docdir = ${datarootdir}/doc/${PACKAGE}
376
+ dvidir = ${docdir}
377
+ exec_prefix = ${prefix}
378
+ host = x86_64-pc-linux-gnu
379
+ host_alias =
380
+ host_cpu = x86_64
381
+ host_os = linux-gnu
382
+ host_vendor = pc
383
+ htmldir = ${docdir}
384
+ includedir = ${prefix}/include
385
+ infodir = ${datarootdir}/info
386
+ install_sh = ${SHELL} /libxml/install-sh
387
+ libdir = ${exec_prefix}/lib
388
+ libexecdir = ${exec_prefix}/libexec
389
+ localedir = ${datarootdir}/locale
390
+ localstatedir = ${prefix}/var
391
+ mandir = ${datarootdir}/man
392
+ mkdir_p = $(MKDIR_P)
393
+ oldincludedir = /usr/include
394
+ pdfdir = ${docdir}
395
+ prefix = /usr/local
396
+ program_transform_name = s,x,x,
397
+ psdir = ${docdir}
398
+ pythondir = $(PYTHON_SITE_PACKAGES)
399
+ sbindir = ${exec_prefix}/sbin
400
+ sharedstatedir = ${prefix}/com
401
+ srcdir = .
402
+ sysconfdir = ${prefix}/etc
403
+ target_alias =
404
+ top_build_prefix = ../../
405
+ top_builddir = ../..
406
+ top_srcdir = ../..
407
+ xmlincdir = $(includedir)/libxml2/libxml
408
+ xmlinc_HEADERS = \
409
+ SAX.h \
410
+ entities.h \
411
+ encoding.h \
412
+ parser.h \
413
+ parserInternals.h \
414
+ xmlerror.h \
415
+ HTMLparser.h \
416
+ HTMLtree.h \
417
+ debugXML.h \
418
+ tree.h \
419
+ list.h \
420
+ hash.h \
421
+ xpath.h \
422
+ xpathInternals.h \
423
+ xpointer.h \
424
+ xinclude.h \
425
+ xmlIO.h \
426
+ xmlmemory.h \
427
+ nanohttp.h \
428
+ nanoftp.h \
429
+ uri.h \
430
+ valid.h \
431
+ xlink.h \
432
+ xmlversion.h \
433
+ DOCBparser.h \
434
+ catalog.h \
435
+ threads.h \
436
+ globals.h \
437
+ c14n.h \
438
+ xmlautomata.h \
439
+ xmlregexp.h \
440
+ xmlmodule.h \
441
+ xmlschemas.h \
442
+ schemasInternals.h \
443
+ xmlschemastypes.h \
444
+ xmlstring.h \
445
+ xmlunicode.h \
446
+ xmlreader.h \
447
+ relaxng.h \
448
+ dict.h \
449
+ SAX2.h \
450
+ xmlexports.h \
451
+ xmlwriter.h \
452
+ chvalid.h \
453
+ pattern.h \
454
+ xmlsave.h \
455
+ schematron.h
456
+
457
+ EXTRA_DIST = xmlversion.h.in
458
+ all: all-am
459
+
460
+ .SUFFIXES:
461
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
462
+ @for dep in $?; do \
463
+ case '$(am__configure_deps)' in \
464
+ *$$dep*) \
465
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
466
+ && { if test -f $@; then exit 0; else break; fi; }; \
467
+ exit 1;; \
468
+ esac; \
469
+ done; \
470
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu include/libxml/Makefile'; \
471
+ $(am__cd) $(top_srcdir) && \
472
+ $(AUTOMAKE) --gnu include/libxml/Makefile
473
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
474
+ @case '$?' in \
475
+ *config.status*) \
476
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
477
+ *) \
478
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
479
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
480
+ esac;
481
+
482
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
483
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
484
+
485
+ $(top_srcdir)/configure: $(am__configure_deps)
486
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
487
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
488
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
489
+ $(am__aclocal_m4_deps):
490
+ xmlversion.h: $(top_builddir)/config.status $(srcdir)/xmlversion.h.in
491
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
492
+
493
+ mostlyclean-libtool:
494
+ -rm -f *.lo
495
+
496
+ clean-libtool:
497
+ -rm -rf .libs _libs
498
+ install-xmlincHEADERS: $(xmlinc_HEADERS)
499
+ @$(NORMAL_INSTALL)
500
+ @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \
501
+ if test -n "$$list"; then \
502
+ echo " $(MKDIR_P) '$(DESTDIR)$(xmlincdir)'"; \
503
+ $(MKDIR_P) "$(DESTDIR)$(xmlincdir)" || exit 1; \
504
+ fi; \
505
+ for p in $$list; do \
506
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
507
+ echo "$$d$$p"; \
508
+ done | $(am__base_list) | \
509
+ while read files; do \
510
+ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(xmlincdir)'"; \
511
+ $(INSTALL_HEADER) $$files "$(DESTDIR)$(xmlincdir)" || exit $$?; \
512
+ done
513
+
514
+ uninstall-xmlincHEADERS:
515
+ @$(NORMAL_UNINSTALL)
516
+ @list='$(xmlinc_HEADERS)'; test -n "$(xmlincdir)" || list=; \
517
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
518
+ dir='$(DESTDIR)$(xmlincdir)'; $(am__uninstall_files_from_dir)
519
+
520
+ ID: $(am__tagged_files)
521
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
522
+ tags: tags-am
523
+ TAGS: tags
524
+
525
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
526
+ set x; \
527
+ here=`pwd`; \
528
+ $(am__define_uniq_tagged_files); \
529
+ shift; \
530
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
531
+ test -n "$$unique" || unique=$$empty_fix; \
532
+ if test $$# -gt 0; then \
533
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
534
+ "$$@" $$unique; \
535
+ else \
536
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
537
+ $$unique; \
538
+ fi; \
539
+ fi
540
+ ctags: ctags-am
541
+
542
+ CTAGS: ctags
543
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
544
+ $(am__define_uniq_tagged_files); \
545
+ test -z "$(CTAGS_ARGS)$$unique" \
546
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
547
+ $$unique
548
+
549
+ GTAGS:
550
+ here=`$(am__cd) $(top_builddir) && pwd` \
551
+ && $(am__cd) $(top_srcdir) \
552
+ && gtags -i $(GTAGS_ARGS) "$$here"
553
+ cscopelist: cscopelist-am
554
+
555
+ cscopelist-am: $(am__tagged_files)
556
+ list='$(am__tagged_files)'; \
557
+ case "$(srcdir)" in \
558
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
559
+ *) sdir=$(subdir)/$(srcdir) ;; \
560
+ esac; \
561
+ for i in $$list; do \
562
+ if test -f "$$i"; then \
563
+ echo "$(subdir)/$$i"; \
564
+ else \
565
+ echo "$$sdir/$$i"; \
566
+ fi; \
567
+ done >> $(top_builddir)/cscope.files
568
+
569
+ distclean-tags:
570
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
571
+
572
+ distdir: $(DISTFILES)
573
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
574
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
575
+ list='$(DISTFILES)'; \
576
+ dist_files=`for file in $$list; do echo $$file; done | \
577
+ sed -e "s|^$$srcdirstrip/||;t" \
578
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
579
+ case $$dist_files in \
580
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
581
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
582
+ sort -u` ;; \
583
+ esac; \
584
+ for file in $$dist_files; do \
585
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
586
+ if test -d $$d/$$file; then \
587
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
588
+ if test -d "$(distdir)/$$file"; then \
589
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
590
+ fi; \
591
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
592
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
593
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
594
+ fi; \
595
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
596
+ else \
597
+ test -f "$(distdir)/$$file" \
598
+ || cp -p $$d/$$file "$(distdir)/$$file" \
599
+ || exit 1; \
600
+ fi; \
601
+ done
602
+ check-am: all-am
603
+ check: check-am
604
+ all-am: Makefile $(HEADERS)
605
+ installdirs:
606
+ for dir in "$(DESTDIR)$(xmlincdir)"; do \
607
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
608
+ done
609
+ install: install-am
610
+ install-exec: install-exec-am
611
+ install-data: install-data-am
612
+ uninstall: uninstall-am
613
+
614
+ install-am: all-am
615
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
616
+
617
+ installcheck: installcheck-am
618
+ install-strip:
619
+ if test -z '$(STRIP)'; then \
620
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
621
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
622
+ install; \
623
+ else \
624
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
625
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
626
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
627
+ fi
628
+ mostlyclean-generic:
629
+
630
+ clean-generic:
631
+
632
+ distclean-generic:
633
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
634
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
635
+
636
+ maintainer-clean-generic:
637
+ @echo "This command is intended for maintainers to use"
638
+ @echo "it deletes files that may require special tools to rebuild."
639
+ clean: clean-am
640
+
641
+ clean-am: clean-generic clean-libtool mostlyclean-am
642
+
643
+ distclean: distclean-am
644
+ -rm -f Makefile
645
+ distclean-am: clean-am distclean-generic distclean-tags
646
+
647
+ dvi: dvi-am
648
+
649
+ dvi-am:
650
+
651
+ html: html-am
652
+
653
+ html-am:
654
+
655
+ info: info-am
656
+
657
+ info-am:
658
+
659
+ install-data-am: install-xmlincHEADERS
660
+
661
+ install-dvi: install-dvi-am
662
+
663
+ install-dvi-am:
664
+
665
+ install-exec-am:
666
+
667
+ install-html: install-html-am
668
+
669
+ install-html-am:
670
+
671
+ install-info: install-info-am
672
+
673
+ install-info-am:
674
+
675
+ install-man:
676
+
677
+ install-pdf: install-pdf-am
678
+
679
+ install-pdf-am:
680
+
681
+ install-ps: install-ps-am
682
+
683
+ install-ps-am:
684
+
685
+ installcheck-am:
686
+
687
+ maintainer-clean: maintainer-clean-am
688
+ -rm -f Makefile
689
+ maintainer-clean-am: distclean-am maintainer-clean-generic
690
+
691
+ mostlyclean: mostlyclean-am
692
+
693
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
694
+
695
+ pdf: pdf-am
696
+
697
+ pdf-am:
698
+
699
+ ps: ps-am
700
+
701
+ ps-am:
702
+
703
+ uninstall-am: uninstall-xmlincHEADERS
704
+
705
+ .MAKE: install-am install-strip
706
+
707
+ .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
708
+ clean-libtool cscopelist-am ctags ctags-am distclean \
709
+ distclean-generic distclean-libtool distclean-tags distdir dvi \
710
+ dvi-am html html-am info info-am install install-am \
711
+ install-data install-data-am install-dvi install-dvi-am \
712
+ install-exec install-exec-am install-html install-html-am \
713
+ install-info install-info-am install-man install-pdf \
714
+ install-pdf-am install-ps install-ps-am install-strip \
715
+ install-xmlincHEADERS installcheck installcheck-am installdirs \
716
+ maintainer-clean maintainer-clean-generic mostlyclean \
717
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
718
+ tags tags-am uninstall uninstall-am uninstall-xmlincHEADERS
719
+
720
+ .PRECIOUS: Makefile
721
+
722
+
723
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
724
+ # Otherwise a system limit (for SysV at least) may be exceeded.
725
+ .NOEXPORT: