cairo-gobject 3.5.0 → 3.5.1
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.
- checksums.yaml +4 -4
- data/ext/cairo-gobject/rb-cairo-gobject.c +15 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fe625f3bfdcaecaf261b540c1cae43eaadb6762e65c411928166b44a6d39d61
|
4
|
+
data.tar.gz: 05cabd0e385a6319efdf3ba310d067556d131e9b43ee18d45b97b332ca25e751
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f33a25dbf8a9314e83c666fc30b979978c0ff1e75a7a9635a25388b94a6c81dfece317f4682d8d2fd64a7fad5e642413668f25cd75711ff6b7273ceb23118664
|
7
|
+
data.tar.gz: 340a2400d70fea349626d6379b88b4ac8d7b752909f2c5b16fcbc3700823c380438db661ffd178e24d5db6857baf135249e48d12b3e5bd605a1f1ba74e2223f2
|
@@ -136,6 +136,21 @@ DEFINE_CONVERSION(region,
|
|
136
136
|
RVAL2CRREGION,
|
137
137
|
CRREGION2RVAL)
|
138
138
|
|
139
|
+
#ifdef _WIN32
|
140
|
+
/* Workaround: See glib2/ext/glib2/rbglib.c for details. */
|
141
|
+
BOOL WINAPI
|
142
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
143
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
144
|
+
G_GNUC_UNUSED LPVOID lpvReserved);
|
145
|
+
BOOL WINAPI
|
146
|
+
DllMain(G_GNUC_UNUSED HINSTANCE hinstDLL,
|
147
|
+
G_GNUC_UNUSED DWORD fdwReason,
|
148
|
+
G_GNUC_UNUSED LPVOID lpvReserved)
|
149
|
+
{
|
150
|
+
return TRUE;
|
151
|
+
}
|
152
|
+
#endif
|
153
|
+
|
139
154
|
void
|
140
155
|
Init_cairo_gobject(void)
|
141
156
|
{
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cairo-gobject
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Ruby-GNOME Project Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cairo
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.5.
|
33
|
+
version: 3.5.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.5.
|
40
|
+
version: 3.5.1
|
41
41
|
description: Ruby/CairoGObject is a Ruby binding of cairo-gobject.
|
42
42
|
email: ruby-gnome2-devel-en@lists.sourceforge.net
|
43
43
|
executables: []
|