renet 0.1.7-universal-darwin → 0.1.9-universal-darwin

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/peer.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 peer ENet peer functions
10
10
  @{
data/ext/renet/protocol.c CHANGED
@@ -5,9 +5,9 @@
5
5
  #include <stdio.h>
6
6
  #include <string.h>
7
7
  #define ENET_BUILDING_LIB 1
8
- #include "enet/utility.h"
9
- #include "enet/time.h"
10
- #include "enet/enet.h"
8
+ #include "utility.h"
9
+ #include "time.h"
10
+ #include "enet.h"
11
11
 
12
12
  static size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] =
13
13
  {
data/ext/renet/protocol.h CHANGED
@@ -5,7 +5,7 @@
5
5
  #ifndef __ENET_PROTOCOL_H__
6
6
  #define __ENET_PROTOCOL_H__
7
7
 
8
- #include "enet/types.h"
8
+ #include "types.h"
9
9
 
10
10
  enum
11
11
  {
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.9"));
34
34
  }
35
35
 
36
36
  VALUE renet_main_initialize(VALUE self)
data/ext/renet/renet.h CHANGED
@@ -20,7 +20,7 @@
20
20
  #define RUBY_ENET
21
21
 
22
22
  #include <ruby.h>
23
- #include <enet/enet.h>
23
+ #include <enet.h>
24
24
 
25
25
  #include "renet_connection.h"
26
26
  #include "renet_server.h"
data/ext/renet/unix.c CHANGED
@@ -16,7 +16,7 @@
16
16
  #include <time.h>
17
17
 
18
18
  #define ENET_BUILDING_LIB 1
19
- #include "enet/enet.h"
19
+ #include "enet.h"
20
20
 
21
21
  #ifdef HAS_FCNTL
22
22
  #include <fcntl.h>
data/ext/renet/win32.c CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  #include <time.h>
8
8
  #define ENET_BUILDING_LIB 1
9
- #include "enet/enet.h"
9
+ #include "enet.h"
10
10
 
11
11
  static enet_uint32 timeBase = 0;
12
12
 
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.9
5
5
  prerelease:
6
6
  platform: universal-darwin
7
7
  authors: