gosu 0.8.4 → 0.8.5.pre1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gosu/Version.hpp +2 -2
- data/ext/gosu/extconf.rb +2 -2
- data/ext/gosu/gosu_wrap.cxx +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f2c16c544b29566336bef5eb0917347074eb4d67
|
4
|
+
data.tar.gz: d1566b015e4972b8ed692933ac2b29963372ca1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b59cd681626bfebb1a45ad085cd71bff6345ca85c0fa6d339d46240c07fa83fe0b23b54aafdea0f26b0a80427b38b62a9d19711d52cb163c2a2bbd333886f2c5
|
7
|
+
data.tar.gz: 6a20dc0649703ded80053c78c7ff354502f8298d63db5d2550c5fa6739a4bdca8c12b7d18bb2c756ee7ff0f758134ada161b251cf37dd1b8789937122a5ec179
|
data/Gosu/Version.hpp
CHANGED
@@ -3,8 +3,8 @@
|
|
3
3
|
|
4
4
|
#define GOSU_MAJOR_VERSION 0
|
5
5
|
#define GOSU_MINOR_VERSION 8
|
6
|
-
#define GOSU_POINT_VERSION
|
7
|
-
#define GOSU_VERSION "0.8.
|
6
|
+
#define GOSU_POINT_VERSION 5
|
7
|
+
#define GOSU_VERSION "0.8.5.pre1"
|
8
8
|
|
9
9
|
#define GOSU_COPYRIGHT_NOTICE \
|
10
10
|
"This software uses the following third-party libraries:\n" \
|
data/ext/gosu/extconf.rb
CHANGED
@@ -85,7 +85,7 @@ if `uname`.chomp == 'Darwin' then
|
|
85
85
|
if `uname -r`.to_i >= 13 then
|
86
86
|
# Use C++11 on Mavericks and above
|
87
87
|
# TODO: This can probably be enabled starting from 10.6?
|
88
|
-
CONFIG['CXXFLAGS'] << " -std=gnu++11"
|
88
|
+
CONFIG['CXXFLAGS'] << " -stdlib=libc++ -std=gnu++11"
|
89
89
|
end
|
90
90
|
|
91
91
|
$LDFLAGS << " -liconv"
|
@@ -95,7 +95,7 @@ if `uname`.chomp == 'Darwin' then
|
|
95
95
|
# Otherwise, the resulting gosu.bundle is still dependent on libSDL2-2.0.0.dylib, see `otool -L gosu.bundle`
|
96
96
|
$LDFLAGS << HOMEBREW_DEPENDENCIES.map { |lib| " /usr/local/lib/lib#{lib}.a" }.join
|
97
97
|
else
|
98
|
-
$LDFLAGS << HOMEBREW_DEPENDENCIES.map { |lib| " -l#{lib}" }.join
|
98
|
+
$LDFLAGS << " -L/usr/local/lib " << HOMEBREW_DEPENDENCIES.map { |lib| " -l#{lib}" }.join
|
99
99
|
end
|
100
100
|
|
101
101
|
$LDFLAGS << FRAMEWORKS.map { |f| " -framework #{f}" }.join
|
data/ext/gosu/gosu_wrap.cxx
CHANGED
@@ -10876,8 +10876,8 @@ SWIGEXPORT void Init_gosu(void) {
|
|
10876
10876
|
SWIG_RubyInitializeTrackings();
|
10877
10877
|
rb_define_const(mGosu, "MAJOR_VERSION", SWIG_From_int(static_cast< int >(0)));
|
10878
10878
|
rb_define_const(mGosu, "MINOR_VERSION", SWIG_From_int(static_cast< int >(8)));
|
10879
|
-
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(
|
10880
|
-
rb_define_const(mGosu, "VERSION", SWIG_FromCharPtr("0.8.
|
10879
|
+
rb_define_const(mGosu, "POINT_VERSION", SWIG_From_int(static_cast< int >(5)));
|
10880
|
+
rb_define_const(mGosu, "VERSION", SWIG_FromCharPtr("0.8.5.pre1"));
|
10881
10881
|
rb_define_const(mGosu, "GOSU_COPYRIGHT_NOTICE", SWIG_FromCharPtr("This software uses the following third-party libraries:\n\nGosu, http://www.libgosu.org, MIT License, http://opensource.org/licenses/MIT\nSDL 2, http://www.libsdl.org, MIT License, http://opensource.org/licenses/MIT\nFreeImage, http://freeimage.sourceforge.net, FreeImage Public License\nlibogg & libvorbis, http://www.xiph.org, BSD License, 3-Clause Version, http://www.xiph.org/licenses/bsd\nlibsndfile, http://www.mega-nerd.com/libsndfile, GNU LGPL 3, http://www.gnu.org/copyleft/lesser.html\nOpenAL Soft, http://kcat.strangesoft.net/openal.html, GNU LGPL 2, http://www.gnu.org/licenses/old-licenses/lgpl-2.0.html\n"));
|
10882
10882
|
rb_define_module_function(mGosu, "milliseconds", VALUEFUNC(_wrap_milliseconds), -1);
|
10883
10883
|
rb_define_module_function(mGosu, "random", VALUEFUNC(_wrap_random), -1);
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gosu
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.5.pre1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julian Raschke
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-09-
|
11
|
+
date: 2014-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
2D game development library.
|
@@ -175,9 +175,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
175
175
|
version: 1.8.2
|
176
176
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
177
177
|
requirements:
|
178
|
-
- - '
|
178
|
+
- - '>'
|
179
179
|
- !ruby/object:Gem::Version
|
180
|
-
version:
|
180
|
+
version: 1.3.1
|
181
181
|
requirements: []
|
182
182
|
rubyforge_project:
|
183
183
|
rubygems_version: 2.3.0
|