libxml-ruby 1.1.4 → 2.0.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.
- data/{CHANGES → HISTORY} +35 -0
- data/LICENSE +1 -0
- data/MANIFEST +165 -0
- data/{README → README.rdoc} +2 -2
- data/Rakefile +47 -147
- data/ext/libxml/libxml.c +17 -1
- data/ext/libxml/ruby_libxml.h +9 -1
- data/ext/libxml/ruby_xml_attr.c +3 -3
- data/ext/libxml/ruby_xml_attr_decl.c +32 -32
- data/ext/libxml/ruby_xml_attributes.c +1 -1
- data/ext/libxml/ruby_xml_cbg.c +1 -2
- data/ext/libxml/ruby_xml_document.c +26 -4
- data/ext/libxml/ruby_xml_dtd.c +3 -3
- data/ext/libxml/ruby_xml_encoding.c +92 -5
- data/ext/libxml/ruby_xml_encoding.h +4 -0
- data/ext/libxml/ruby_xml_namespace.c +2 -2
- data/ext/libxml/ruby_xml_node.c +14 -14
- data/ext/libxml/ruby_xml_parser_context.c +8 -8
- data/ext/libxml/ruby_xml_reader.c +98 -43
- data/ext/libxml/ruby_xml_sax2_handler.c +13 -1
- data/ext/libxml/ruby_xml_sax_parser.c +4 -5
- data/ext/libxml/ruby_xml_version.h +5 -5
- data/ext/libxml/ruby_xml_xpath_context.c +9 -6
- data/ext/libxml/ruby_xml_xpath_object.c +1 -1
- data/ext/vc/libxml_ruby.sln +4 -4
- data/lib/libxml.rb +29 -29
- data/lib/libxml/attr.rb +112 -110
- data/lib/libxml/attr_decl.rb +2 -0
- data/lib/libxml/attributes.rb +13 -11
- data/lib/libxml/document.rb +192 -190
- data/lib/libxml/error.rb +89 -87
- data/lib/libxml/hpricot.rb +77 -75
- data/lib/libxml/html_parser.rb +96 -94
- data/lib/libxml/namespace.rb +61 -59
- data/lib/libxml/namespaces.rb +37 -35
- data/lib/libxml/node.rb +398 -384
- data/lib/libxml/ns.rb +21 -19
- data/lib/libxml/parser.rb +366 -364
- data/lib/libxml/properties.rb +22 -20
- data/lib/libxml/reader.rb +2 -0
- data/lib/libxml/sax_callbacks.rb +179 -177
- data/lib/libxml/sax_parser.rb +57 -55
- data/lib/libxml/tree.rb +28 -26
- data/lib/libxml/xpath_object.rb +15 -13
- data/lib/xml.rb +16 -14
- data/lib/xml/libxml.rb +10 -8
- data/libxml-ruby.gemspec +50 -0
- data/script/benchmark/depixelate +634 -0
- data/script/benchmark/hamlet.xml +9055 -0
- data/script/benchmark/parsecount +170 -0
- data/script/benchmark/sock_entries.xml +507 -0
- data/script/benchmark/throughput +41 -0
- data/script/test +6 -0
- data/test/etc_doc_to_s.rb +21 -19
- data/test/ets_doc_file.rb +17 -15
- data/test/ets_doc_to_s.rb +23 -21
- data/test/ets_gpx.rb +28 -26
- data/test/ets_node_gc.rb +23 -21
- data/test/ets_tsr.rb +11 -9
- data/test/model/bands.iso-8859-1.xml +5 -0
- data/test/model/bands.utf-8.xml +5 -0
- data/test/rb-magic-comment.rb +33 -0
- data/test/tc_attr.rb +181 -170
- data/test/tc_attr_decl.rb +3 -1
- data/test/tc_attributes.rb +134 -132
- data/test/tc_deprecated_require.rb +13 -11
- data/test/tc_document.rb +119 -113
- data/test/tc_document_write.rb +186 -117
- data/test/tc_dtd.rb +125 -123
- data/test/tc_error.rb +3 -1
- data/test/tc_html_parser.rb +139 -137
- data/test/tc_namespace.rb +61 -58
- data/test/tc_namespaces.rb +176 -173
- data/test/tc_node.rb +257 -180
- data/test/tc_node_cdata.rb +51 -49
- data/test/tc_node_comment.rb +33 -30
- data/test/tc_node_copy.rb +42 -40
- data/test/tc_node_edit.rb +159 -157
- data/test/tc_node_text.rb +71 -69
- data/test/tc_node_write.rb +41 -16
- data/test/tc_node_xlink.rb +29 -26
- data/test/tc_parser.rb +335 -329
- data/test/tc_parser_context.rb +188 -185
- data/test/tc_properties.rb +39 -36
- data/test/tc_reader.rb +297 -283
- data/test/tc_relaxng.rb +54 -51
- data/test/tc_sax_parser.rb +275 -273
- data/test/tc_schema.rb +53 -51
- data/test/tc_traversal.rb +222 -220
- data/test/tc_xinclude.rb +21 -19
- data/test/tc_xml.rb +3 -1
- data/test/tc_xpath.rb +195 -193
- data/test/tc_xpath_context.rb +80 -78
- data/test/tc_xpath_expression.rb +38 -35
- data/test/tc_xpointer.rb +74 -72
- data/test/test_helper.rb +14 -0
- data/test/test_suite.rb +39 -33
- metadata +65 -105
- data/doc/css/normal.css +0 -182
- data/doc/img/raze-tiny.png +0 -0
- data/doc/img/red-cube.jpg +0 -0
- data/doc/img/xml-ruby.png +0 -0
- data/doc/index.xml +0 -43
- data/doc/install.xml +0 -77
- data/doc/layout.rhtml +0 -38
- data/doc/layout.xsl +0 -67
- data/doc/license.xml +0 -32
- data/doc/log/changelog.xml +0 -1324
- data/doc/log/changelog.xsl +0 -42
- data/ext/libxml/Makefile +0 -156
- data/ext/libxml/extconf.h +0 -5
- data/ext/libxml/libxml-ruby.so.a +0 -0
- data/ext/libxml/libxml.o +0 -0
- data/ext/libxml/libxml_ruby.so +0 -0
- data/ext/libxml/mkmf.log +0 -129
- data/ext/libxml/ruby_xml.o +0 -0
- data/ext/libxml/ruby_xml_attr.o +0 -0
- data/ext/libxml/ruby_xml_attr_decl.o +0 -0
- data/ext/libxml/ruby_xml_attributes.o +0 -0
- data/ext/libxml/ruby_xml_cbg.o +0 -0
- data/ext/libxml/ruby_xml_document.o +0 -0
- data/ext/libxml/ruby_xml_dtd.o +0 -0
- data/ext/libxml/ruby_xml_encoding.o +0 -0
- data/ext/libxml/ruby_xml_error.o +0 -0
- data/ext/libxml/ruby_xml_html_parser.o +0 -0
- data/ext/libxml/ruby_xml_html_parser_context.o +0 -0
- data/ext/libxml/ruby_xml_html_parser_options.o +0 -0
- data/ext/libxml/ruby_xml_input_cbg.o +0 -0
- data/ext/libxml/ruby_xml_io.o +0 -0
- data/ext/libxml/ruby_xml_namespace.o +0 -0
- data/ext/libxml/ruby_xml_namespaces.o +0 -0
- data/ext/libxml/ruby_xml_node.o +0 -0
- data/ext/libxml/ruby_xml_parser.o +0 -0
- data/ext/libxml/ruby_xml_parser_context.o +0 -0
- data/ext/libxml/ruby_xml_parser_options.o +0 -0
- data/ext/libxml/ruby_xml_reader.o +0 -0
- data/ext/libxml/ruby_xml_relaxng.o +0 -0
- data/ext/libxml/ruby_xml_sax2_handler.o +0 -0
- data/ext/libxml/ruby_xml_sax_parser.o +0 -0
- data/ext/libxml/ruby_xml_schema.o +0 -0
- data/ext/libxml/ruby_xml_xinclude.o +0 -0
- data/ext/libxml/ruby_xml_xpath.o +0 -0
- data/ext/libxml/ruby_xml_xpath_context.o +0 -0
- data/ext/libxml/ruby_xml_xpath_expression.o +0 -0
- data/ext/libxml/ruby_xml_xpath_object.o +0 -0
- data/ext/libxml/ruby_xml_xpointer.o +0 -0
data/doc/log/changelog.xsl
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
2
|
-
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
3
|
-
|
|
4
|
-
<xsl:output cdata-section-elements="script"/>
|
|
5
|
-
|
|
6
|
-
<xsl:template match="/">
|
|
7
|
-
|
|
8
|
-
<html>
|
|
9
|
-
<head>
|
|
10
|
-
<title>Facets Changelog</title>
|
|
11
|
-
<link REL='SHORTCUT ICON' HREF="img/xml-ruby.png" />
|
|
12
|
-
<style>
|
|
13
|
-
td { font-family: monospace; font-size: 8pt; padding: 0px 10px; }
|
|
14
|
-
</style>
|
|
15
|
-
</head>
|
|
16
|
-
<body>
|
|
17
|
-
<div class="container">
|
|
18
|
-
<h1>LibXML ChangeLog</h1>
|
|
19
|
-
<table style="width: 100%;">
|
|
20
|
-
<xsl:apply-templates />
|
|
21
|
-
</table>
|
|
22
|
-
<br/><br/>
|
|
23
|
-
<div class='copyright'>
|
|
24
|
-
Copyright © 2001-2006 LibXML-Ruby Development Team<br/>
|
|
25
|
-
Changelog is pure XML/XSLT.<br/>
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
28
|
-
</body>
|
|
29
|
-
</html>
|
|
30
|
-
|
|
31
|
-
</xsl:template>
|
|
32
|
-
|
|
33
|
-
<xsl:template match="logentry">
|
|
34
|
-
<tr>
|
|
35
|
-
<td><b><pre><xsl:value-of select="msg"/></pre></b></td>
|
|
36
|
-
<td><xsl:value-of select="author"/></td>
|
|
37
|
-
<td><xsl:value-of select="date"/></td>
|
|
38
|
-
</tr>
|
|
39
|
-
</xsl:template>
|
|
40
|
-
|
|
41
|
-
</xsl:stylesheet>
|
|
42
|
-
|
data/ext/libxml/Makefile
DELETED
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
SHELL = /bin/sh
|
|
3
|
-
|
|
4
|
-
#### Start of system configuration section. ####
|
|
5
|
-
|
|
6
|
-
srcdir = .
|
|
7
|
-
topdir = /c/Development/Ruby/lib/ruby/1.8/i386-mingw32
|
|
8
|
-
hdrdir = $(topdir)
|
|
9
|
-
VPATH = $(srcdir):$(topdir):$(hdrdir)
|
|
10
|
-
|
|
11
|
-
DESTDIR = c:
|
|
12
|
-
exec_prefix = $(prefix)
|
|
13
|
-
prefix = $(DESTDIR)/Development/Ruby
|
|
14
|
-
sharedstatedir = $(prefix)/com
|
|
15
|
-
mandir = $(datarootdir)/man
|
|
16
|
-
psdir = $(docdir)
|
|
17
|
-
oldincludedir = $(DESTDIR)/usr/include
|
|
18
|
-
localedir = $(datarootdir)/locale
|
|
19
|
-
bindir = $(exec_prefix)/bin
|
|
20
|
-
libexecdir = $(exec_prefix)/libexec
|
|
21
|
-
sitedir = $(libdir)/ruby/site_ruby
|
|
22
|
-
htmldir = $(docdir)
|
|
23
|
-
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
24
|
-
includedir = $(prefix)/include
|
|
25
|
-
infodir = $(datarootdir)/info
|
|
26
|
-
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
27
|
-
sysconfdir = $(prefix)/etc
|
|
28
|
-
libdir = $(exec_prefix)/lib
|
|
29
|
-
sbindir = $(exec_prefix)/sbin
|
|
30
|
-
rubylibdir = $(libdir)/ruby/$(ruby_version)
|
|
31
|
-
docdir = $(datarootdir)/doc/$(PACKAGE)
|
|
32
|
-
dvidir = $(docdir)
|
|
33
|
-
vendordir = $(libdir)/ruby/vendor_ruby
|
|
34
|
-
datarootdir = $(prefix)/share
|
|
35
|
-
pdfdir = $(docdir)
|
|
36
|
-
archdir = $(rubylibdir)/$(arch)
|
|
37
|
-
sitearchdir = $(sitelibdir)/$(sitearch)
|
|
38
|
-
datadir = $(datarootdir)
|
|
39
|
-
localstatedir = $(prefix)/var
|
|
40
|
-
sitelibdir = $(sitedir)/$(ruby_version)
|
|
41
|
-
|
|
42
|
-
CC = gcc
|
|
43
|
-
LIBRUBY = lib$(LIBRUBY_SO).a
|
|
44
|
-
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
|
45
|
-
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
|
46
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static
|
|
47
|
-
|
|
48
|
-
RUBY_EXTCONF_H = extconf.h
|
|
49
|
-
CFLAGS = -g -O2 $(cflags) -I. -Ic:/Development/Ruby/lib/ruby/1.8/i386-mingw32 -I. -I/usr/local/include
|
|
50
|
-
INCFLAGS = -I. -I. -Ic:/Development/Ruby/lib/ruby/1.8/i386-mingw32 -I. -I/usr/local/include
|
|
51
|
-
DEFS =
|
|
52
|
-
CPPFLAGS = -DRUBY_EXTCONF_H=\"$(RUBY_EXTCONF_H)\" -IC:/Development/msys/local/include/libxml2
|
|
53
|
-
CXXFLAGS = $(CFLAGS)
|
|
54
|
-
ldflags = -L. -Wl,--out-implib=libxml-ruby.so.a
|
|
55
|
-
dldflags = -Wl,--enable-auto-image-base,--enable-auto-import,--export-all
|
|
56
|
-
archflag =
|
|
57
|
-
DLDFLAGS = $(ldflags) $(dldflags) $(archflag)
|
|
58
|
-
LDSHARED = gcc -shared -s
|
|
59
|
-
AR = ar
|
|
60
|
-
EXEEXT = .exe
|
|
61
|
-
|
|
62
|
-
RUBY_INSTALL_NAME = ruby
|
|
63
|
-
RUBY_SO_NAME = msvcrt-ruby18
|
|
64
|
-
arch = i386-mingw32
|
|
65
|
-
sitearch = i386-msvcrt
|
|
66
|
-
ruby_version = 1.8
|
|
67
|
-
ruby = c:/Development/Ruby/bin/ruby
|
|
68
|
-
RUBY = $(ruby)
|
|
69
|
-
RM = rm -f
|
|
70
|
-
MAKEDIRS = mkdir -p
|
|
71
|
-
INSTALL = /bin/install -c
|
|
72
|
-
INSTALL_PROG = $(INSTALL) -m 0755
|
|
73
|
-
INSTALL_DATA = $(INSTALL) -m 644
|
|
74
|
-
COPY = cp
|
|
75
|
-
|
|
76
|
-
#### End of system configuration section. ####
|
|
77
|
-
|
|
78
|
-
preload =
|
|
79
|
-
|
|
80
|
-
libpath = . $(libdir) c:/Development/Ruby/lib
|
|
81
|
-
LIBPATH = -L. -L$(libdir) -Lc:/Development/Ruby/lib
|
|
82
|
-
DEFFILE =
|
|
83
|
-
|
|
84
|
-
CLEANFILES = mkmf.log
|
|
85
|
-
DISTCLEANFILES =
|
|
86
|
-
|
|
87
|
-
extout =
|
|
88
|
-
extout_prefix =
|
|
89
|
-
target_prefix =
|
|
90
|
-
LOCAL_LIBS =
|
|
91
|
-
LIBS = $(LIBRUBYARG_SHARED) -lxml2 -liconv -lz -lshell32 -lwsock32
|
|
92
|
-
SRCS = libxml.c ruby_xml.c ruby_xml_attr.c ruby_xml_attributes.c ruby_xml_attr_decl.c ruby_xml_cbg.c ruby_xml_document.c ruby_xml_dtd.c ruby_xml_encoding.c ruby_xml_error.c ruby_xml_html_parser.c ruby_xml_html_parser_context.c ruby_xml_html_parser_options.c ruby_xml_input_cbg.c ruby_xml_io.c ruby_xml_namespace.c ruby_xml_namespaces.c ruby_xml_node.c ruby_xml_parser.c ruby_xml_parser_context.c ruby_xml_parser_options.c ruby_xml_reader.c ruby_xml_relaxng.c ruby_xml_sax2_handler.c ruby_xml_sax_parser.c ruby_xml_schema.c ruby_xml_xinclude.c ruby_xml_xpath.c ruby_xml_xpath_context.c ruby_xml_xpath_expression.c ruby_xml_xpath_object.c ruby_xml_xpointer.c
|
|
93
|
-
OBJS = libxml.o ruby_xml.o ruby_xml_attr.o ruby_xml_attributes.o ruby_xml_attr_decl.o ruby_xml_cbg.o ruby_xml_document.o ruby_xml_dtd.o ruby_xml_encoding.o ruby_xml_error.o ruby_xml_html_parser.o ruby_xml_html_parser_context.o ruby_xml_html_parser_options.o ruby_xml_input_cbg.o ruby_xml_io.o ruby_xml_namespace.o ruby_xml_namespaces.o ruby_xml_node.o ruby_xml_parser.o ruby_xml_parser_context.o ruby_xml_parser_options.o ruby_xml_reader.o ruby_xml_relaxng.o ruby_xml_sax2_handler.o ruby_xml_sax_parser.o ruby_xml_schema.o ruby_xml_xinclude.o ruby_xml_xpath.o ruby_xml_xpath_context.o ruby_xml_xpath_expression.o ruby_xml_xpath_object.o ruby_xml_xpointer.o
|
|
94
|
-
TARGET = libxml_ruby
|
|
95
|
-
DLLIB = $(TARGET).so
|
|
96
|
-
EXTSTATIC =
|
|
97
|
-
STATIC_LIB =
|
|
98
|
-
|
|
99
|
-
BINDIR = $(bindir)
|
|
100
|
-
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
|
101
|
-
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
|
102
|
-
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
|
103
|
-
|
|
104
|
-
TARGET_SO = $(DLLIB)
|
|
105
|
-
CLEANLIBS = $(TARGET).so $(TARGET).il? $(TARGET).tds $(TARGET).map
|
|
106
|
-
CLEANOBJS = *.o *.a *.s[ol] *.pdb *.exp *.bak
|
|
107
|
-
|
|
108
|
-
all: $(DLLIB)
|
|
109
|
-
static: $(STATIC_LIB)
|
|
110
|
-
|
|
111
|
-
clean:
|
|
112
|
-
@-$(RM) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES)
|
|
113
|
-
|
|
114
|
-
distclean: clean
|
|
115
|
-
@-$(RM) Makefile $(RUBY_EXTCONF_H) conftest.* mkmf.log
|
|
116
|
-
@-$(RM) core ruby$(EXEEXT) *~ $(DISTCLEANFILES)
|
|
117
|
-
|
|
118
|
-
realclean: distclean
|
|
119
|
-
install: install-so install-rb
|
|
120
|
-
|
|
121
|
-
install-so: $(RUBYARCHDIR)
|
|
122
|
-
install-so: $(RUBYARCHDIR)/$(DLLIB)
|
|
123
|
-
$(RUBYARCHDIR)/$(DLLIB): $(DLLIB)
|
|
124
|
-
$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
|
125
|
-
install-rb: pre-install-rb install-rb-default
|
|
126
|
-
install-rb-default: pre-install-rb-default
|
|
127
|
-
pre-install-rb: Makefile
|
|
128
|
-
pre-install-rb-default: Makefile
|
|
129
|
-
$(RUBYARCHDIR):
|
|
130
|
-
$(MAKEDIRS) $@
|
|
131
|
-
|
|
132
|
-
site-install: site-install-so site-install-rb
|
|
133
|
-
site-install-so: install-so
|
|
134
|
-
site-install-rb: install-rb
|
|
135
|
-
|
|
136
|
-
.SUFFIXES: .c .m .cc .cxx .cpp .o
|
|
137
|
-
|
|
138
|
-
.cc.o:
|
|
139
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
|
140
|
-
|
|
141
|
-
.cxx.o:
|
|
142
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
|
143
|
-
|
|
144
|
-
.cpp.o:
|
|
145
|
-
$(CXX) $(INCFLAGS) $(CPPFLAGS) $(CXXFLAGS) -c $<
|
|
146
|
-
|
|
147
|
-
.c.o:
|
|
148
|
-
$(CC) $(INCFLAGS) $(CPPFLAGS) $(CFLAGS) -c $<
|
|
149
|
-
|
|
150
|
-
$(DLLIB): $(OBJS) Makefile
|
|
151
|
-
@-$(RM) $@
|
|
152
|
-
$(LDSHARED) -o $@ $(OBJS) $(LIBPATH) $(DLDFLAGS) $(LOCAL_LIBS) $(LIBS)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
$(OBJS): ruby.h defines.h $(RUBY_EXTCONF_H)
|
data/ext/libxml/extconf.h
DELETED
data/ext/libxml/libxml-ruby.so.a
DELETED
|
Binary file
|
data/ext/libxml/libxml.o
DELETED
|
Binary file
|
data/ext/libxml/libxml_ruby.so
DELETED
|
Binary file
|
data/ext/libxml/mkmf.log
DELETED
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
have_library: checking for socket() in socket.lib... -------------------- no
|
|
2
|
-
|
|
3
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib socket.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
4
|
-
checked program was:
|
|
5
|
-
/* begin */
|
|
6
|
-
1: #define WIN32_LEAN_AND_MEAN
|
|
7
|
-
2: #define WIN32
|
|
8
|
-
3: #include <winsock2.h>
|
|
9
|
-
4: #include <windows.h>
|
|
10
|
-
5:
|
|
11
|
-
6: /*top*/
|
|
12
|
-
7: int main() { return 0; }
|
|
13
|
-
8: int t() { void ((*volatile p)()); p = (void ((*)()))socket; return 0; }
|
|
14
|
-
/* end */
|
|
15
|
-
|
|
16
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib socket.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
17
|
-
checked program was:
|
|
18
|
-
/* begin */
|
|
19
|
-
1: /*top*/
|
|
20
|
-
2: int main() { return 0; }
|
|
21
|
-
3: int t() { socket(); return 0; }
|
|
22
|
-
/* end */
|
|
23
|
-
|
|
24
|
-
--------------------
|
|
25
|
-
|
|
26
|
-
have_library: checking for gethostbyname() in nsl.lib... -------------------- no
|
|
27
|
-
|
|
28
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib nsl.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
29
|
-
checked program was:
|
|
30
|
-
/* begin */
|
|
31
|
-
1: #define WIN32_LEAN_AND_MEAN
|
|
32
|
-
2: #define WIN32
|
|
33
|
-
3: #include <winsock2.h>
|
|
34
|
-
4: #include <windows.h>
|
|
35
|
-
5:
|
|
36
|
-
6: /*top*/
|
|
37
|
-
7: int main() { return 0; }
|
|
38
|
-
8: int t() { void ((*volatile p)()); p = (void ((*)()))gethostbyname; return 0; }
|
|
39
|
-
/* end */
|
|
40
|
-
|
|
41
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib nsl.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
42
|
-
checked program was:
|
|
43
|
-
/* begin */
|
|
44
|
-
1: /*top*/
|
|
45
|
-
2: int main() { return 0; }
|
|
46
|
-
3: int t() { gethostbyname(); return 0; }
|
|
47
|
-
/* end */
|
|
48
|
-
|
|
49
|
-
--------------------
|
|
50
|
-
|
|
51
|
-
have_library: checking for atan() in m.lib... -------------------- yes
|
|
52
|
-
|
|
53
|
-
--------------------
|
|
54
|
-
|
|
55
|
-
have_library: checking for inflate() in z.lib... -------------------- no
|
|
56
|
-
|
|
57
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib z.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
58
|
-
checked program was:
|
|
59
|
-
/* begin */
|
|
60
|
-
1: #define WIN32_LEAN_AND_MEAN
|
|
61
|
-
2: #define WIN32
|
|
62
|
-
3: #include <winsock2.h>
|
|
63
|
-
4: #include <windows.h>
|
|
64
|
-
5:
|
|
65
|
-
6: /*top*/
|
|
66
|
-
7: int main() { return 0; }
|
|
67
|
-
8: int t() { void ((*volatile p)()); p = (void ((*)()))inflate; return 0; }
|
|
68
|
-
/* end */
|
|
69
|
-
|
|
70
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib z.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
71
|
-
checked program was:
|
|
72
|
-
/* begin */
|
|
73
|
-
1: /*top*/
|
|
74
|
-
2: int main() { return 0; }
|
|
75
|
-
3: int t() { inflate(); return 0; }
|
|
76
|
-
/* end */
|
|
77
|
-
|
|
78
|
-
--------------------
|
|
79
|
-
|
|
80
|
-
have_library: checking for inflate() in zlib.lib... -------------------- no
|
|
81
|
-
|
|
82
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib zlib.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
83
|
-
checked program was:
|
|
84
|
-
/* begin */
|
|
85
|
-
1: #define WIN32_LEAN_AND_MEAN
|
|
86
|
-
2: #define WIN32
|
|
87
|
-
3: #include <winsock2.h>
|
|
88
|
-
4: #include <windows.h>
|
|
89
|
-
5:
|
|
90
|
-
6: /*top*/
|
|
91
|
-
7: int main() { return 0; }
|
|
92
|
-
8: int t() { void ((*volatile p)()); p = (void ((*)()))inflate; return 0; }
|
|
93
|
-
/* end */
|
|
94
|
-
|
|
95
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib zlib.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
96
|
-
checked program was:
|
|
97
|
-
/* begin */
|
|
98
|
-
1: /*top*/
|
|
99
|
-
2: int main() { return 0; }
|
|
100
|
-
3: int t() { inflate(); return 0; }
|
|
101
|
-
/* end */
|
|
102
|
-
|
|
103
|
-
--------------------
|
|
104
|
-
|
|
105
|
-
have_library: checking for inflate() in zlib1.lib... -------------------- no
|
|
106
|
-
|
|
107
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib zlib1.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
108
|
-
checked program was:
|
|
109
|
-
/* begin */
|
|
110
|
-
1: #define WIN32_LEAN_AND_MEAN
|
|
111
|
-
2: #define WIN32
|
|
112
|
-
3: #include <winsock2.h>
|
|
113
|
-
4: #include <windows.h>
|
|
114
|
-
5:
|
|
115
|
-
6: /*top*/
|
|
116
|
-
7: int main() { return 0; }
|
|
117
|
-
8: int t() { void ((*volatile p)()); p = (void ((*)()))inflate; return 0; }
|
|
118
|
-
/* end */
|
|
119
|
-
|
|
120
|
-
"cl -nologo -Feconftest -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -I. -IC:/Development/Ruby/lib/ruby/1.8/i386-mswin32 -MD -Zi -O2b2xg- -G6 conftest.c msvcrt-ruby18-static.lib zlib1.lib oldnames.lib user32.lib advapi32.lib shell32.lib ws2_32.lib -link -libpath:"." -libpath:"C:/Development/Ruby/lib" -libpath:"C:/Development/Ruby/lib" -stack:0x2000000"
|
|
121
|
-
checked program was:
|
|
122
|
-
/* begin */
|
|
123
|
-
1: /*top*/
|
|
124
|
-
2: int main() { return 0; }
|
|
125
|
-
3: int t() { inflate(); return 0; }
|
|
126
|
-
/* end */
|
|
127
|
-
|
|
128
|
-
--------------------
|
|
129
|
-
|
data/ext/libxml/ruby_xml.o
DELETED
|
Binary file
|
data/ext/libxml/ruby_xml_attr.o
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_cbg.o
DELETED
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_dtd.o
DELETED
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_error.o
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_io.o
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_node.o
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/ext/libxml/ruby_xml_xpath.o
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|