Skip to content

Commit

Permalink
Update README and liblo version check
Browse files Browse the repository at this point in the history
  • Loading branch information
malloch committed Jul 22, 2024
1 parent d089314 commit 75d2bd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ Optional dependencies for building bindings:

* Python bindings: [Python](http://www.python.org), Python license, LGPL-compatible
* Java bindings: [openjdk](https://openjdk.org/), GPL license
* C# bindings: [Mono](https://www.mono-project.com/), MIT license
* C# bindings: [.NET](https://dotnet.microsoft.com/en-us/), MIT license

Used only in the examples:

Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ PKG_PROG_PKG_CONFIG
AC_ARG_WITH([liblo],
AS_HELP_STRING([--without-liblo],[compile without liblo, disable OSC]))
AS_IF([test x$with_liblo != xno],[
PKG_CHECK_MODULES([liblo], [liblo >= 0.30])])
PKG_CHECK_MODULES([liblo], [liblo >= 0.32])])
AS_IF([test "x$liblo_LIBS" = x],
[with_liblo=no])
AS_IF([test x$with_liblo != xno],[
Expand All @@ -368,8 +368,8 @@ AS_IF([test x$with_liblo != xno],[
[AC_DEFINE([HAVE_LIBLO_SERVER_IFACE],[],[Define to use lo_server_new_multicast_iface function in liblo.])])
AC_CHECK_FUNC([lo_bundle_count],
[AC_DEFINE([HAVE_LIBLO_BUNDLE_COUNT],[],[Define to use lo_bundle_count function in liblo.])])
AC_CHECK_FUNC([lo_servers_recv_noblock],
[AC_DEFINE([HAVE_LIBLO_SERVERS_RECV_NOBLOCK],[],[Define to use lo_servers_recv_noblock function in liblo.])],[AC_MSG_ERROR([liblo >= 0.30 required.])])
AC_CHECK_FUNC([lo_server_new_from_config],
[AC_DEFINE([HAVE_LIBLO_SERVER_NEW_FROM_CONFIG],[],[Define to use lo_server_new_from_config function in liblo.])],[AC_MSG_ERROR([liblo >= 0.32 required.])])
LIBS="$tmpLIBS"
])

Expand Down

0 comments on commit 75d2bd5

Please sign in to comment.