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: Mac OS 10 configure problem
Type: Stage:
Components: Build Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jackjansen Nosy List: jackjansen, rwgk
Priority: normal Keywords:

Created on 2002-10-30 21:22 by rwgk, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
@diff jackjansen, 2002-11-05 22:11
Messages (3)
msg13007 - (view) Author: Ralf W. Grosse-Kunstleve (rwgk) Date: 2002-10-30 21:22
Using the Python CVS head from about two days ago:

Under Mac OS 10 configure --enable-framework; make fails 
if the source directory is on a NFS mounted disk, but the 
build directory in a case insensitive Mac volume. According 
to Jack Jansen this is because configure checks if the 
source directory is on a file system that is case insensitive, 
when it should be checking the file system with the build 
directory:

if test -d "${srcdir}/python"
then
     echo "$as_me:$LINENO: result: yes" >&5
echo "${ECHO_T}yes" >&6
     BUILDEXEEXT=.exe
else
        echo "$as_me:$LINENO: result: no" >&5
echo "${ECHO_T}no" >&6
        BUILDEXEEXT=$EXEEXT
fi
msg13008 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2002-11-05 22:11
Logged In: YES 
user_id=45365

Attaching a patch that I still need to review on a case sensitive system.
msg13009 - (view) Author: Jack Jansen (jackjansen) * (Python committer) Date: 2002-11-06 15:14
Logged In: YES 
user_id=45365

Fixed. Checked in as configure rev. 1.352, configure.in rev. 1.363
History
Date User Action Args
2022-04-10 16:05:48adminsetgithub: 37390
2002-10-30 21:22:38rwgkcreate