Mailing List Archive

CVS: python/dist/src configure.in,1.295,1.296 configure,1.285,1.286
Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv12073

Modified Files:
configure.in configure
Log Message:
Add a -Wno-long-double flag to the compile flags on Mac OS X. Fixes bug
525481. (Probably not a 2.2.1 candidate, unless the fix that introduced a
long double into objimpl.h (rev. 2.44) is backported to 2.2.1).


Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.295
retrieving revision 1.296
diff -C2 -d -r1.295 -r1.296
*** configure.in 8 Mar 2002 21:43:51 -0000 1.295
--- configure.in 12 Mar 2002 15:25:52 -0000 1.296
***************
*** 399,403 ****
case $ac_sys_system in
Darwin*)
! OPT="$OPT -no-cpp-precomp";;
esac
fi
--- 399,403 ----
case $ac_sys_system in
Darwin*)
! OPT="$OPT -Wno-long-double -no-cpp-precomp";;
esac
fi

Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.285
retrieving revision 1.286
diff -C2 -d -r1.285 -r1.286
*** configure 8 Mar 2002 13:43:01 -0000 1.285
--- configure 12 Mar 2002 15:25:52 -0000 1.286
***************
*** 1,5 ****
#! /bin/sh


# Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
#! /bin/sh


# Guess values for system-dependent variables and create Makefiles.
***************
*** 1429,1433 ****
case $ac_sys_system in
AIX*)
! LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $(LINKCC)";;
dgux*)
LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
--- 1429,1433 ----
case $ac_sys_system in
AIX*)
! LINKCC="\$(srcdir)/Modules/makexp_aix Modules/python.exp \"\" \$(LIBRARY); $LINKCC";;
dgux*)
LINKCC="LD_RUN_PATH=$libdir $(LINKCC)";;
***************
*** 1690,1694 ****
case $ac_sys_system in
Darwin*)
! OPT="$OPT -no-cpp-precomp";;
esac
fi
--- 1690,1694 ----
case $ac_sys_system in
Darwin*)
! OPT="$OPT -Wno-long-double -no-cpp-precomp";;
esac
fi