This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: OSX framework builds fail after r72861 move of _locale into core library
Type: compile error Stage:
Components: Build Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, ned.deily, ronaldoussoren
Priority: normal Keywords:

Created on 2009-05-25 07:39 by ned.deily, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
patch-nad0025-py3k.txt ned.deily, 2009-05-25 07:39
Messages (2)
msg88304 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2009-05-25 07:39
Undefined symbols:
 "_CFStringConvertEncodingToIANACharSetName", referenced from:
    _PyLocale_getdefaultlocale in libpython3.1.a(_localemodule.o)
 "_CFStringGetSystemEncoding", referenced from:
    _PyLocale_getdefaultlocale in libpython3.1.a(_localemodule.o)
 "_CFStringGetCStringPtr", referenced from:
   _PyLocale_getdefaultlocale in libpython3.1.a(_localemodule.o)

SOLUTION:
   add "-framework CoreFoundation" to Makefile target
   "$(PYTHONFRAMEWORKDIR)/Versions/$(VERSION)/$(PYTHONFRAMEWORK)"
   build of temporary minimal framework bootstrap
msg88318 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-05-25 13:48
Fixed in r72913.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50354
2009-05-25 13:48:44benjamin.petersonsetstatus: open -> closed
resolution: fixed
messages: + msg88318
2009-05-25 07:39:02ned.deilycreate