Update of /cvsroot/pure-data/externals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15335
Modified Files: Makefile Log Message: fixed things up for a Pd-0.39.2-extended-test2 build
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/externals/Makefile,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Makefile 17 Mar 2006 05:00:53 -0000 1.40 --- Makefile 19 Mar 2006 05:49:56 -0000 1.41 *************** *** 14,17 **** --- 14,20 ---- BUILDLAYOUT_DIR = $(cvs_root_dir)/packages
+ # turn on weak linking and dlopen support + export MACOSX_DEPLOYMENT_TARGET = 10.3 + # default target default: all *************** *** 117,121 **** ifeq ($(OS_NAME),darwin) LIB_TARGETS += hid - # LIB_TARGETS += hid pdp else # GNU/Linux, BSD, IRIX, etc. --- 120,123 ---- *************** *** 552,557 **** ifeq ($(OS_NAME),darwin) FRAMEWORKS = Carbon IOKit ForceFeedback ! HID_CFLAGS = $(CFLAGS) -I$(externals_src)/hcs/hid/HID\ Utilities\ Source ! HID_LIBS = $(LIBS) -L$(externals_src)/hcs/hid/HID\ Utilities\ Source/build \ -lHIDUtilities $(patsubst %,-weak_framework %,$(FRAMEWORKS)) else --- 554,561 ---- ifeq ($(OS_NAME),darwin) FRAMEWORKS = Carbon IOKit ForceFeedback ! HID_CFLAGS = $(CFLAGS) -I$(externals_src)/hcs/hid/HID\ Utilities\ Source ! HID_UTILITIES_SOURCE = $(externals_src)/hcs/hid/HID\ Utilities\ Source ! HID_LIBS = $(LIBS) -L$(HID_UTILITIES_SOURCE)/build \ ! -L$(HID_UTILITIES_SOURCE)/build/Default \ -lHIDUtilities $(patsubst %,-weak_framework %,$(FRAMEWORKS)) else *************** *** 566,570 **** $(CC) $(HID_CFLAGS) -o "$*.o" -c "$*.c"
! $(externals_src)/hcs/hid/hid.$(EXTENSION): $(HID_OBJECTS) $(CC) $(LDFLAGS) -o $(externals_src)/hcs/hid/hid.$(EXTENSION) \ $(HID_OBJECTS) $(HID_LIBS) --- 570,581 ---- $(CC) $(HID_CFLAGS) -o "$*.o" -c "$*.c"
! $(HID_UTILITIES_SOURCE)/build/libHIDUtilities.a: ! # Apple changed the XCode CLI tool's name in xcode2... arg ! cd $(HID_UTILITIES_SOURCE) && \ ! (test -x /usr/bin/xcodebuild && /usr/bin/xcodebuild) || pbxbuild ! ! ! $(externals_src)/hcs/hid/hid.$(EXTENSION): $(HID_OBJECTS) \ ! $(HID_UTILITIES_SOURCE)/build/libHIDUtilities.a $(CC) $(LDFLAGS) -o $(externals_src)/hcs/hid/hid.$(EXTENSION) \ $(HID_OBJECTS) $(HID_LIBS) *************** *** 724,729 **** --license "GNU GPL" \ --version "" ! install -p $(MAPPING_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(MAPPING_NAME) ! install -p $(externals_src)/mapping/*.pd $(objectsdir)/$(MAPPING_NAME) install -d $(helpdir)/$(MAPPING_NAME) install -p $(externals_src)/mapping/help/*.pd \ --- 735,741 ---- --license "GNU GPL" \ --version "" ! # no compiled objects yet... ! # install -p $(MAPPING_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(MAPPING_NAME) ! install -p $(externals_src)/mapping/pd/*.pd $(objectsdir)/$(MAPPING_NAME) install -d $(helpdir)/$(MAPPING_NAME) install -p $(externals_src)/mapping/help/*.pd \ *************** *** 733,738 **** $(manualsdir)/$(MAPPING_NAME)/README.txt install -d $(examplesdir)/$(MAPPING_NAME) ! install -p $(externals_src)/mapping/examples/*.pd \ ! $(examplesdir)/$(MAPPING_NAME)
mapping_clean: --- 745,750 ---- $(manualsdir)/$(MAPPING_NAME)/README.txt install -d $(examplesdir)/$(MAPPING_NAME) ! # install -p $(externals_src)/mapping/examples/*.pd \ ! # $(examplesdir)/$(MAPPING_NAME)
mapping_clean: