renet 0.1.2-universal-darwin → 0.1.3-universal-darwin
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/renet/extconf.rb +5 -5
- data/ext/renet/renet.c +1 -1
- metadata +1 -1
data/ext/renet/extconf.rb
CHANGED
@@ -7,8 +7,8 @@ create_makefile(extension_name)
|
|
7
7
|
|
8
8
|
system("make")
|
9
9
|
|
10
|
-
if `uname`.chomp == 'Darwin'
|
11
|
-
`ln -s renet.bundle ../../lib/renet.bundle`
|
12
|
-
else
|
13
|
-
`ln -s
|
14
|
-
end
|
10
|
+
#if `uname`.chomp == 'Darwin'
|
11
|
+
# `ln -s renet.bundle ../../lib/renet.bundle`
|
12
|
+
#else
|
13
|
+
# `ln -s renet.so ../../lib/renet.so`
|
14
|
+
#end
|
data/ext/renet/renet.c
CHANGED
@@ -30,7 +30,7 @@ void Init_renet()
|
|
30
30
|
init_renet_connection();
|
31
31
|
init_renet_server();
|
32
32
|
rb_define_const(mENet, "ENET_VERSION", rb_str_new2("1.3.0"));
|
33
|
-
rb_define_const(mENet, "RENET_VERSION", rb_str_new2("0.1.
|
33
|
+
rb_define_const(mENet, "RENET_VERSION", rb_str_new2("0.1.3"));
|
34
34
|
}
|
35
35
|
|
36
36
|
VALUE renet_main_initialize(VALUE self)
|