Update of /cvsroot/pure-data/externals/OSCx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5043
Modified Files: Makefile.in configure configure.ac Log Message: a bunch of things to get the OSCx objects compiling to complete without 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.
Index: Makefile.in =================================================================== RCS file: /cvsroot/pure-data/externals/OSCx/Makefile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Makefile.in 5 Apr 2004 04:26:00 -0000 1.3 --- Makefile.in 16 Jan 2006 05:56:13 -0000 1.4 *************** *** 2,11 ****
all: ! cd libOSC ; make ! cd src ; make ! cd send+dump ; make
! install: all ! cd src ; make install
clean: --- 2,16 ----
all: ! cd libOSC && make ! cd src && make
! lib: all ! cd src && make lib ! ! utils: ! cd send+dump && make ! ! install: all lib utils ! cd src && make install
clean:
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/externals/OSCx/configure.ac,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure.ac 19 Dec 2005 04:11:47 -0000 1.5 --- configure.ac 16 Jan 2006 05:56:14 -0000 1.6 *************** *** 58,62 **** dnl ------------------------------------------
! INCLUDES="-I../libOSC -I../../pd/src -I../../../pd/src -I." LIBOSC=libOSC.a if test -z "$GCC"; then --- 58,62 ---- dnl ------------------------------------------
! INCLUDES="-I../libOSC -I../../pd/src -I../../../pd/src -I../src" LIBOSC=libOSC.a if test -z "$GCC"; then
Index: configure =================================================================== RCS file: /cvsroot/pure-data/externals/OSCx/configure,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** configure 19 Dec 2005 04:11:47 -0000 1.5 --- configure 16 Jan 2006 05:56:13 -0000 1.6 *************** *** 4392,4396 ****
! INCLUDES="-I../libOSC -I../../pd/src -I../../../pd/src -I." LIBOSC=libOSC.a if test -z "$GCC"; then --- 4392,4396 ----
! INCLUDES="-I../libOSC -I../../pd/src -I../../../pd/src -I../src" LIBOSC=libOSC.a if test -z "$GCC"; then