[Python-checkins] r80191 - in python/branches/py3k: configure configure.in

Ezio Melotti ezio.melotti at gmail.com
Mon Apr 19 10:59:06 CEST 2010


Hi,

On 18/04/2010 22.07, ronald.oussoren wrote:
> Modified: python/branches/py3k/configure.in
> ==============================================================================
> --- python/branches/py3k/configure.in	(original)
> +++ python/branches/py3k/configure.in	Sun Apr 18 21:07:43 2010
> @@ -908,6 +908,20 @@
>   	Darwin*)
>   	    # -Wno-long-double, -no-cpp-precomp, and -mno-fused-madd
>   	    # used to be here, but non-Apple gcc doesn't accept them.
> +            if test "${CC}" = gcc
> +	    then
There are spaces mixed with tabs in these lines.

> +		AC_MSG_CHECKING(which compiler should be used)
> +		case "${UNIVERSALSDK}" in
> +		*/MacOSX10.4u.sdk)
> +			# Build using 10.4 SDK, force usage of gcc when the
> +			# compiler is gcc, otherwise the user will get very
> +			# confusing error messages when building on OSX 10.6
> +			CC=gcc-4.0
> +			CPP=cpp-4.0
> +			;;
> +		esac
> +		AC_MSG_RESULT($CC)
> +	    fi

Best Regards,
Ezio Melotti


More information about the Python-checkins mailing list