[Python-checkins] r72913 - python/branches/py3k/Makefile.pre.in
benjamin.peterson
python-checkins at python.org
Mon May 25 15:48:17 CEST 2009
Author: benjamin.peterson
Date: Mon May 25 15:48:17 2009
New Revision: 72913
Log:
link to CoreFoundation in framework builds #6104
Modified:
python/branches/py3k/Makefile.pre.in
Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in (original)
+++ python/branches/py3k/Makefile.pre.in Mon May 25 15:48:17 2009
@@ -462,10 +462,11 @@
-all_load $(LIBRARY) -Wl,-single_module \
-install_name $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK) \
-compatibility_version $(VERSION) \
- -current_version $(VERSION); \
+ -current_version $(VERSION) \
+ -framework CoreFoundation; \
else \
/usr/bin/libtool -o $(LDLIBRARY) -dynamic $(OTHER_LIBTOOL_OPT) $(LIBRARY) \
- @LIBTOOL_CRUFT@ ;\
+ @LIBTOOL_CRUFT@ -framework CoreFoundation;\
fi
$(INSTALL) -d -m $(DIRMODE) \
$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/Resources/English.lproj
More information about the Python-checkins
mailing list