libxml-ruby 2.1.0-x86-mingw32 → 2.1.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
data/HISTORY CHANGED
@@ -1,5 +1,9 @@
1
1
  = Release History
2
2
 
3
+ == 2.1.1 / 2011-07-31 Charlie Savage
4
+
5
+ * Switch to using def files to control library exports (Charlie Savage).
6
+
3
7
  == 2.1.0 / 2011-07-31 Charlie Savage
4
8
 
5
9
  * Ruby 1.9.3 compatability (Charlie Savage).
@@ -14,6 +14,7 @@ else
14
14
  $CFLAGS = CONFIG['CFLAGS']
15
15
  end
16
16
  $LDFLAGS = CONFIG['LDFLAGS']
17
+
17
18
  $LIBPATH.push(Config::CONFIG['libdir'])
18
19
 
19
20
  def crash(str)
data/ext/libxml/libxml.c CHANGED
@@ -36,9 +36,6 @@ VALUE rxml_str_new2(const char* xstr, const char* xencoding)
36
36
  }
37
37
 
38
38
 
39
- #if defined(_WIN32)
40
- __declspec(dllexport)
41
- #endif
42
39
  void Init_libxml_ruby(void)
43
40
  {
44
41
  /* The libxml gem provides Ruby language bindings for GNOME's Libxml2
@@ -4,12 +4,7 @@
4
4
  #define __RXML_DOCUMENT__
5
5
 
6
6
  extern VALUE cXMLDocument;
7
-
8
7
  void rxml_init_document();
9
-
10
-
11
- #if defined(_WIN32)
12
- __declspec(dllexport)
13
- #endif
14
8
  VALUE rxml_document_wrap(xmlDocPtr xnode);
9
+
15
10
  #endif
@@ -1,9 +1,9 @@
1
1
  /* Don't nuke this block! It is used for automatically updating the
2
2
  * versions below. VERSION = string formatting, VERNUM = numbered
3
3
  * version for inline testing: increment both or none at all.*/
4
- #define RUBY_LIBXML_VERSION "2.1.0"
5
- #define RUBY_LIBXML_VERNUM 210
4
+ #define RUBY_LIBXML_VERSION "2.1.1"
5
+ #define RUBY_LIBXML_VERNUM 211
6
6
  #define RUBY_LIBXML_VER_MAJ 2
7
7
  #define RUBY_LIBXML_VER_MIN 1
8
- #define RUBY_LIBXML_VER_MIC 0
8
+ #define RUBY_LIBXML_VER_MIC 1
9
9
  #define RUBY_LIBXML_VER_PATCH 0
@@ -5,9 +5,9 @@
5
5
 
6
6
  extern VALUE mXPath;
7
7
 
8
- extern VALUE rxml_xpath_to_value(xmlXPathContextPtr, xmlXPathObjectPtr);
9
- extern xmlXPathObjectPtr rxml_xpath_from_value(VALUE);
10
-
11
8
  void rxml_init_xpath(void);
12
9
 
10
+ VALUE rxml_xpath_to_value(xmlXPathContextPtr, xmlXPathObjectPtr);
11
+ xmlXPathObjectPtr rxml_xpath_from_value(VALUE);
12
+
13
13
  #endif
Binary file
Binary file
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libxml-ruby
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 0
10
- version: 2.1.0
9
+ - 1
10
+ version: 2.1.1
11
11
  platform: x86-mingw32
12
12
  authors:
13
13
  - Ross Bamform
@@ -20,7 +20,7 @@ autorequire:
20
20
  bindir: bin
21
21
  cert_chain: []
22
22
 
23
- date: 2011-07-31 00:00:00 Z
23
+ date: 2011-08-01 00:00:00 Z
24
24
  dependencies: []
25
25
 
26
26
  description: " The Libxml-Ruby project provides Ruby language bindings for the GNOME\n Libxml2 XML toolkit. It is free software, released under the MIT License.\n Libxml-ruby's primary advantage over REXML is performance - if speed\n is your need, these are good libraries to consider, as demonstrated\n by the informal benchmark below.\n"