mirror of
https://github.com/lsalzman/enet
synced 2024-11-21 06:25:59 -07:00
1.3.8 release prep
This commit is contained in:
parent
51f303d5e2
commit
742e6b9552
5 changed files with 6 additions and 4 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
ENet 1.3.8 (June 2, 2013):
|
||||||
|
|
||||||
* added enet_linked_version() for checking the linked version
|
* added enet_linked_version() for checking the linked version
|
||||||
* added enet_socket_get_address() for querying the local address of a socket
|
* added enet_socket_get_address() for querying the local address of a socket
|
||||||
* silenced some debugging prints unless ENET_DEBUG is defined during compilation
|
* silenced some debugging prints unless ENET_DEBUG is defined during compilation
|
||||||
|
|
|
@ -16,7 +16,7 @@ enetinclude_HEADERS = \
|
||||||
lib_LTLIBRARIES = libenet.la
|
lib_LTLIBRARIES = libenet.la
|
||||||
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c
|
libenet_la_SOURCES = callbacks.c compress.c host.c list.c packet.c peer.c protocol.c unix.c win32.c
|
||||||
# see info '(libtool) Updating version info' before making a release
|
# see info '(libtool) Updating version info' before making a release
|
||||||
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 4:0:2
|
libenet_la_LDFLAGS = $(AM_LDFLAGS) -version-info 5:0:3
|
||||||
INCLUDES = -I$(top_srcdir)/include
|
INCLUDES = -I$(top_srcdir)/include
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -Im4
|
ACLOCAL_AMFLAGS = -Im4
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
AC_INIT([libenet], [1.3.7])
|
AC_INIT([libenet], [1.3.8])
|
||||||
AC_CONFIG_SRCDIR([include/enet/enet.h])
|
AC_CONFIG_SRCDIR([include/enet/enet.h])
|
||||||
AM_INIT_AUTOMAKE([foreign])
|
AM_INIT_AUTOMAKE([foreign])
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@ portable, and easily embeddable.
|
||||||
You can retrieve the source to ENet by downloading it in either .tar.gz form
|
You can retrieve the source to ENet by downloading it in either .tar.gz form
|
||||||
or accessing the github distribution directly.
|
or accessing the github distribution directly.
|
||||||
|
|
||||||
The most recent stable release (1.3.7) can be downloaded <a href="http://enet.bespin.org/download/enet-1.3.7.tar.gz">here</a>.
|
The most recent stable release (1.3.8) can be downloaded <a href="http://enet.bespin.org/download/enet-1.3.8.tar.gz">here</a>.
|
||||||
The last release that is protocol compatible with the 1.2 series or earlier (1.2.5) can be downloaded <a href="http://enet.bespin.org/download/enet-1.2.5.tar.gz">here</a>
|
The last release that is protocol compatible with the 1.2 series or earlier (1.2.5) can be downloaded <a href="http://enet.bespin.org/download/enet-1.2.5.tar.gz">here</a>
|
||||||
|
|
||||||
You can find the most recent ENet source at <a href="https://github.com/lsalzman/enet">the github repository</a>.
|
You can find the most recent ENet source at <a href="https://github.com/lsalzman/enet">the github repository</a>.
|
||||||
|
|
|
@ -25,7 +25,7 @@ extern "C"
|
||||||
|
|
||||||
#define ENET_VERSION_MAJOR 1
|
#define ENET_VERSION_MAJOR 1
|
||||||
#define ENET_VERSION_MINOR 3
|
#define ENET_VERSION_MINOR 3
|
||||||
#define ENET_VERSION_PATCH 7
|
#define ENET_VERSION_PATCH 8
|
||||||
#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
|
#define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
|
||||||
#define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
|
#define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
|
||||||
#define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
|
#define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
|
||||||
|
|
Loading…
Reference in a new issue