[PD-cvs] packages/patches/darwin darwin_jack_weak_linking.patch, 1.1, 1.2

Hans-Christoph Steiner eighthave at users.sourceforge.net
Fri Dec 2 20:12:43 CET 2005


Update of /cvsroot/pure-data/packages/patches/darwin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5956/patches/darwin

Modified Files:
	darwin_jack_weak_linking.patch 
Log Message:
generalized locations so that UNIX-style dir layout can also be used in addition to the Windows/MacOSX-style dir layout; fixed random bugs; added more the clean targets

Index: darwin_jack_weak_linking.patch
===================================================================
RCS file: /cvsroot/pure-data/packages/patches/darwin/darwin_jack_weak_linking.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** darwin_jack_weak_linking.patch	21 Nov 2005 04:37:41 -0000	1.1
--- darwin_jack_weak_linking.patch	2 Dec 2005 19:12:41 -0000	1.2
***************
*** 10,20 ****
   	$(CC) $(CFLAGS)  $(STRIPFLAG) -o $(BIN_DIR)/pdreceive u_pdreceive.c
   
! +# MACOSX_DEPLOYMENT_TARGET=10.2 is necessary on Mac OS X to support weak
  +# linking of frameworks.  Since its just a environment variable, it should be
! +# safely ignored on other platforms.  <hans at eds.org>
   $(PDEXEC): $(OBJ) 
  -	cd ../obj;  $(CC) $(LDFLAGS) $(DBG_CFLAGS) -o $(PDEXEC) $(OBJ) \
  -	$(LIB)
! +	cd ../obj; MACOSX_DEPLOYMENT_TARGET=10.2 $(CC) $(LDFLAGS) $(DBG_CFLAGS) \
  +		-o $(PDEXEC) $(OBJ) $(LIB)
   
--- 10,20 ----
   	$(CC) $(CFLAGS)  $(STRIPFLAG) -o $(BIN_DIR)/pdreceive u_pdreceive.c
   
! +# MACOSX_DEPLOYMENT_TARGET=10.3 is necessary on Mac OS X to support weak
  +# linking of frameworks.  Since its just a environment variable, it should be
! +# safely ignored on other platforms.  <hans at at.or.at>
   $(PDEXEC): $(OBJ) 
  -	cd ../obj;  $(CC) $(LDFLAGS) $(DBG_CFLAGS) -o $(PDEXEC) $(OBJ) \
  -	$(LIB)
! +	cd ../obj; MACOSX_DEPLOYMENT_TARGET=10.3 $(CC) $(LDFLAGS) $(DBG_CFLAGS) \
  +		-o $(PDEXEC) $(OBJ) $(LIB)
   





More information about the Pd-cvs mailing list