aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-12-13fix float->int32_t and int32_t->float type-punningHEADsvn2git-headmasterHans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16678
2012-10-21stop [OSC] from trying to load the other objectsHans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16450
2012-10-16fix bug in [sendOSC]'s [typetags( message where it was wrongly using the ↵Hans-Christoph Steiner
pointer to the float value svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16404
2012-10-16removed bizarre re-implementation of strlen()Hans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16403
2012-10-16use Microsoft standard macro: _WIN32 ↵Hans-Christoph Steiner
http://msdn.microsoft.com/en-us/library/b0084kay%28v=vs.80%29.aspx svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16402
2012-10-16make deprecation warning at level 3 and only on setup()Hans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16401
2012-10-16removed last forgotten vestige of old build systemHans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16400
2012-10-16converted OSCx to the Library Template and bumped the version to 0.3.1Hans-Christoph Steiner
svn path=/branches/pd-extended/0.43/externals/oscx/; revision=16399
2012-10-16change -Wl,--export-dynamic to -rdynamic since that's the consistent, modern ↵backups/externals/OSCx@16891Hans-Christoph Steiner
flag for that svn path=/trunk/externals/OSCx/; revision=16398
2011-12-13MinGW build fixesHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=15816
2011-11-17replaced type-punning with int/float unionHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=15789
2011-11-16some quick t_float fixesHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=15776
2010-12-13updated for building against 0.43Hans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=14616
2010-07-15applied patch #1852130 to fix build on CygwinHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=13719
2010-06-04moved deprecation message from _new to _setup so that people don't get ↵Hans-Christoph Steiner
flooded with deprecation messages; cleaned up message formatting svn path=/trunk/externals/OSCx/; revision=13588
2010-04-21added loads of "deprecated" noticesIOhannes m zmölnig
svn path=/trunk/externals/OSCx/; revision=13459
2010-01-23made explicit error about needing a portnumber, and documented itHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=13084
2009-12-27following up on bug report #2921689, fixed a bunch of 'implicit declaration ↵Hans-Christoph Steiner
of function' warnings, which could cause problems on 64-bit svn path=/trunk/externals/OSCx/; revision=12846
2009-10-26added pd/src as path for -lpd for new build systemHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=12680
2009-10-25switch -export_dynamic to the actual current flag --export-dynamicHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=12671
2009-09-22on MinGW, made it also look in pd/src for pd.dll/-lpdHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=12424
2008-03-11added -fPIC and changed wildcard to support 64-bit builds on GNU/LinuxHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=9568
2007-06-14checked in patch from tracker 1656382 to fix TTL for non-multicastHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=7777
2007-06-14checked in patch from tracker 1667928 to fix multicast porting binding bugHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=7776
2007-06-14checked in patch from tracker 1668080 to fix bang crasher bugHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=7775
2007-01-17checked in Stephen Sinclair's MinGW fix, patch 1629160Hans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=7361
2007-01-02committed patch 1612910 to add multicast support to the OSCx objects. I tookHans-Christoph Steiner
out the changes to configure.ac since it broke the Pd-extended build stuff. svn path=/trunk/externals/OSCx/; revision=7120
2006-10-19fixed up to hopefully build on MinGW gcc 3.4.5 since currently it crashes ↵Hans-Christoph Steiner
gcc. I have to say this code is ugly, so its hard to blame gcc. Too many peole just doing quick fixes, and no one caring... I am also guilty as charged. But I did take a moment to remove some warnings svn path=/trunk/externals/OSCx/; revision=6142
2006-04-12applied patch [ 1446663 ] in order to use typed list-elements instead ofIOhannes m zmölnig
reparsing the send-string (up till now the list to send was converted to a string and this string was then converted into an OSC-message; this prevented us from sending of a symbol "12" (instead it became a float 12) svn path=/trunk/externals/OSCx/; revision=4885
2006-03-13updated to be more tolerant of Windows/MinGW build vagariesHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=4702
2006-01-16a bunch of things to get the OSCx objects compiling to complete without ↵Hans-Christoph Steiner
error on MinGW. Moved the building of the OSC library to the 'lib' target. Move the building of the command utils to the 'utils' target. Neither 'lib' nor 'utils' are built with 'all', but they are built with 'install'. Copied externals/OSCx/src/htmsocket.c to externals/OSCx/send+dump/htmsocket.c since they seem to be the same file, but the send+dump one was out of date. svn path=/trunk/externals/OSCx/; revision=4420
2006-01-16made the building of the OSC.pd_ext library optional, with its own 'lib' ↵Hans-Christoph Steiner
target. The lib doesn't build on MinGW, so this makes everything the same on all Pd-extended platforms. Plus the lib isn't really needed anyway. svn path=/trunk/externals/OSCx/; revision=4418
2005-12-19fixed up OSC for MinGW, doesn't compile the OSC.dll lib, but the individual ↵Hans-Christoph Steiner
objects compile fine svn path=/trunk/externals/OSCx/; revision=4255
2005-08-30changes by piotr majdakGeorg Holzmann
svn path=/trunk/externals/OSCx/; revision=3464
2005-06-28Added back a test against "/*" which will strip off the first element in aFrank Barknecht
OSC-message. svn path=/trunk/externals/OSCx/; revision=3265
2005-06-20moving docs out of 5.reference, adding anncarmen rocco
svn path=/trunk/externals/OSCx/; revision=3223
2005-05-02merely adding -Wall and -Wno-unused fixes the 64bit 'float is 0.0' problem. ↵carmen rocco
go figure... svn path=/trunk/externals/OSCx/; revision=2867
2005-04-14OSCxcarmen rocco
svn path=/trunk/externals/OSCx/; revision=2765
2004-08-19changed offending cnmat licences to current ones (2)jdl
svn path=/trunk/externals/OSCx/; revision=1962
2004-08-19changed offending cnmat licences to current onejdl
svn path=/trunk/externals/OSCx/; revision=1961
2004-08-18fixed prefix setting via configurejdl
svn path=/trunk/externals/OSCx/; revision=1960
2004-08-18fixed wrong pd_suffix in install targetjdl
svn path=/trunk/externals/OSCx/; revision=1959
2004-04-07added files from OSC-Kit 1.0 in order to get updated free license; added GPL ↵Hans-Christoph Steiner
to my modifications svn path=/trunk/externals/OSCx/; revision=1556
2004-04-05removed OSC.dll since build system will build a new oneHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=1551
2004-04-05made unified autoconf build, should work with MinGW alsoHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=1550
2004-04-04cleaned up build system, especially for Darwin/MacOS XHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=1549
2004-03-29cleaned up OSC help and added reference to OSC-help.pdHans-Christoph Steiner
svn path=/trunk/externals/OSCx/; revision=1500
2004-03-26dummy addjdl
svn path=/trunk/externals/OSCx/; revision=1483
2004-03-10updated readme ..jdl
svn path=/trunk/externals/OSCx/; revision=1405
2004-03-10all files moved to src folderjdl
svn path=/trunk/externals/OSCx/; revision=1404