annotate src/liblo-0.26/README @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 8a15ff55d9af
children
rev   line source
cannam@89 1 liblo is a lightweight library that provides an easy to use implementation of
cannam@89 2 the OSC protocol. For more information about the OSC protocol, please see:
cannam@89 3
cannam@89 4 - http://www.cnmat.berkeley.edu/OpenSoundControl/
cannam@89 5 - http://www.opensoundcontrol.org/
cannam@89 6
cannam@89 7
cannam@89 8 The official liblo homepage is here:
cannam@89 9
cannam@89 10 - http://liblo.sourceforge.net/
cannam@89 11
cannam@89 12 liblo is portable to most UNIX systems (including OS X) and Windows. It is
cannam@89 13 released under the GNU Lesser General Public Licence (LGPL).
cannam@89 14
cannam@89 15
cannam@89 16 ---
cannam@89 17
cannam@89 18
cannam@89 19 To build and install liblo, read INSTALL in the main liblo directory.
cannam@89 20 liblo is configured as a dynamically-linked library. To use liblo
cannam@89 21 in a new application, you should install liblo with "make install"
cannam@89 22 so that the liblo library can be located by your application.
cannam@89 23
cannam@89 24 To build with MS Visual Studio on Windows, first run the premake4.exe
cannam@89 25 application in the build directory with an argument describing which
cannam@89 26 IDE you are using. This will generate project and solution files.
cannam@89 27
cannam@89 28 See examples for example source code for a simple client and two
cannam@89 29 servers:
cannam@89 30
cannam@89 31 - example_server.c uses lo_server_thread_start() to create
cannam@89 32 a liblo server in an separate thread.
cannam@89 33
cannam@89 34 - nonblocking_server_example.c uses select() to wait for either
cannam@89 35 console input or OSC messages, all in a single thread.
cannam@89 36
cannam@89 37 - example_client.c uses liblo to send OSC messages to a server.
cannam@89 38
cannam@89 39 These examples will work without installing liblo. This is accomplished by a shell script. For example, examples/client_example is a shell
cannam@89 40 script that runs the "real" program examples/.libs/example_client.
cannam@89 41 Because of this indirection, you cannot run example_client with
cannam@89 42 a debugger.
cannam@89 43
cannam@89 44 To debug applications using liblo, one option is to include all the liblo source code in the application rather than linking with the liblo library. For more information about this, please see the libtool's manual:
cannam@89 45
cannam@89 46 http://www.gnu.org/software/libtool/manual.html#Debugging-executables
cannam@89 47
cannam@89 48
cannam@89 49 ---
cannam@89 50
cannam@89 51
cannam@89 52 IPv6 NOTICE:
cannam@89 53 liblo was written to support both IPv4 and IPv6, however it has caused various problems along the way because most of the currently available OSC applications
cannam@89 54 like Pd and SuperCollider doesn't listen on ipv6 sockets. IPv6 is currently disabled by default, but you can enable it using ./configure --enable-ipv6