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: Undefined symbols: _PyOS_mystrnicmp on Mac OS X
Type: compile error Stage:
Components: Build Versions: Python 2.6
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: belopolsky, georg.brandl, mark.dickinson
Priority: normal Keywords:

Created on 2008-02-02 18:18 by belopolsky, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
make-patch.diff belopolsky, 2008-02-02 18:18 Add Python/pystrcmp.o to makefile patch
Messages (4)
msg62006 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-02-02 18:18
On Mac OS X, make fails with the following error
..
/usr/bin/ld: Undefined symbols:
_PyOS_mystrnicmp
collect2: ld returned 1 exit status
make: *** [python.exe] Error 1

The attached patch fixes the issue.
msg62007 - (view) Author: Mark Dickinson (mark.dickinson) * (Python committer) Date: 2008-02-02 19:09
I assume this is on OS X 10.4?  I can't reproduce the failure on Leopard.
msg62008 - (view) Author: Alexander Belopolsky (belopolsky) * (Python committer) Date: 2008-02-02 19:45
Looks like an SVN problem on my end.  I am getting a stale version of the 
makefile.  Please close the issue as invalid.
msg62009 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-02-02 19:50
Closing.
History
Date User Action Args
2022-04-11 14:56:30adminsetgithub: 46284
2008-02-02 19:50:07georg.brandlsetstatus: open -> closed
resolution: not a bug
messages: + msg62009
nosy: + georg.brandl
2008-02-02 19:45:33belopolskysetmessages: + msg62008
2008-02-02 19:09:05mark.dickinsonsetnosy: + mark.dickinson
messages: + msg62007
2008-02-02 18:18:29belopolskycreate