-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to 0.29 and update LO_SO_VERSION accordingly.
- Loading branch information
Showing
5 changed files
with
61 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,29 @@ | ||
2017-08-11 Stephen Sinclair <[email protected]> | ||
* Compatibility fixes (Windows, FreeBSD) | ||
* Configure options to modularize the build | ||
* Detect SO_REUSEPORT support at runtime | ||
* Fix C++ null pointer checks in error conditions | ||
* Add C++ send_from support | ||
* Delay server hostname resolution | ||
* Fix bug in slip_decode | ||
* Fix LO_MARKER-related bugs | ||
* Run-time specification of maximum message size | ||
* Support larger outgoing TCP messages | ||
* Fix C++ header for use with multiple compilation units | ||
* Add blob example | ||
* Add secondary build system based on CMake | ||
* Fix erroneous use of C++ assignment in initializer list | ||
* Fix printf sequences for long long | ||
* Add init/cleanup callbacks for server threads | ||
* Use uintptr_t for casting pointers | ||
* Fix false-positive check for inet_pton | ||
* Change oscdump output buffering behaviour | ||
* Add timetags to oscdump output | ||
* Add oscsendfile for playing back oscdump output | ||
* Use Win32 threads insteads pthreads on Windows | ||
* Add function lo_server_del_lo_method | ||
* Fix bad use of the ternary operator in C++ header | ||
* Cache path strings when building bundles | ||
|
||
2014-01-27 Stephen Sinclair <[email protected]> | ||
* Fix build for Windows (MingW, MSVC) and Android platforms | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AC_PREREQ([2.69]) | ||
|
||
AC_INIT([liblo],[0.28],[[email protected]]) | ||
AC_INIT([liblo],[0.29],[[email protected]]) | ||
|
||
# libtool version: current:revision:age | ||
# | ||
|
@@ -15,9 +15,9 @@ AC_INIT([liblo],[0.28],[[email protected]]) | |
# | ||
# If any interfaces have been removed since the last public release, then set | ||
# age to 0. | ||
m4_define([lt_current], 9) | ||
m4_define([lt_current], 10) | ||
m4_define([lt_revision], 0) | ||
m4_define([lt_age], 2) | ||
m4_define([lt_age], 3) | ||
|
||
m4_define([lt_version_info], [lt_current:lt_revision:lt_age]) | ||
m4_define([lt_current_minus_age], [m4_eval(lt_current - lt_age)]) | ||
|