renet 0.1.7 → 0.1.8

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.
@@ -3,7 +3,7 @@
3
3
  @brief ENet callback functions
4
4
  */
5
5
  #define ENET_BUILDING_LIB 1
6
- #include "enet/enet.h"
6
+ #include "enet.h"
7
7
 
8
8
  static ENetCallbacks callbacks = { malloc, free, abort };
9
9
 
data/ext/renet/compress.c CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
  #define ENET_BUILDING_LIB 1
6
6
  #include <string.h>
7
- #include "enet/enet.h"
7
+ #include "enet.h"
8
8
 
9
9
  typedef struct _ENetSymbol
10
10
  {
data/ext/renet/enet.h CHANGED
@@ -13,15 +13,15 @@ extern "C"
13
13
  #include <stdlib.h>
14
14
 
15
15
  #ifdef WIN32
16
- #include "enet/win32.h"
16
+ #include "win32.h"
17
17
  #else
18
- #include "enet/unix.h"
18
+ #include "unix.h"
19
19
  #endif
20
20
 
21
- #include "enet/types.h"
22
- #include "enet/protocol.h"
23
- #include "enet/list.h"
24
- #include "enet/callbacks.h"
21
+ #include "types.h"
22
+ #include "protocol.h"
23
+ #include "list.h"
24
+ #include "callbacks.h"
25
25
 
26
26
  #define ENET_VERSION_MAJOR 1
27
27
  #define ENET_VERSION_MINOR 3
data/ext/renet/host.c CHANGED
@@ -5,7 +5,7 @@
5
5
  #define ENET_BUILDING_LIB 1
6
6
  #include <string.h>
7
7
  #include <time.h>
8
- #include "enet/enet.h"
8
+ #include "enet.h"
9
9
 
10
10
  /** @defgroup host ENet host functions
11
11
  @{
data/ext/renet/list.c CHANGED
@@ -3,7 +3,7 @@
3
3
  @brief ENet linked list functions
4
4
  */
5
5
  #define ENET_BUILDING_LIB 1
6
- #include "enet/list.h"
6
+ #include "list.h"
7
7
 
8
8
  /**
9
9
  @defgroup list ENet linked list utility functions
data/ext/renet/packet.c CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
  #include <string.h>
6
6
  #define ENET_BUILDING_LIB 1
7
- #include "enet/enet.h"
7
+ #include "enet.h"
8
8
 
9
9
  /** @defgroup Packet ENet packet functions
10
10
  @{
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.7"));
33
+ rb_define_const(mENet, "RENET_VERSION", rb_str_new2("0.1.8"));
34
34
  }
35
35
 
36
36
  VALUE renet_main_initialize(VALUE self)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: renet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: