Update of /cvsroot/pure-data/externals/pidip In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8748/pidip
Modified Files: Tag: branch-v0-39-2-extended Makefile.in Log Message: got pidip compiling properly on Mac OS X, let's hope it works...
Index: Makefile.in =================================================================== RCS file: /cvsroot/pure-data/externals/pidip/Makefile.in,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** Makefile.in 22 Nov 2005 06:18:01 -0000 1.7 --- Makefile.in 12 Dec 2006 02:42:48 -0000 1.7.2.1 *************** *** 30,34 **** --- 30,40 ---- -DPDP_PIDIP_VERSION="$(PDP_PIDIP_VERSION)" -g
+ ifeq ($(shell uname -s),Darwin) + all: pidip.pd_darwin + endif + + ifeq ($(shell uname -s),Linux) all: pidip.pd_linux + endif
pdp_pidip_all: *************** *** 36,39 **** --- 42,50 ---- make -C modules
+ pidip.pd_darwin: pdp_pidip_all + rm -f pidip.pd_darwin + g++ -bundle -undefined dynamic_lookup -o pidip.pd_darwin modules/*.o system/*.o -L/sw/lib $(THEORA_LIBS) $(PDP_PIDIP_LIBS) $(IMLIB_LIBS) $(MAGICK_LIBS) + strip -x pidip.pd_darwin + pidip.pd_linux: pdp_pidip_all rm -f pidip.pd_linux