File tree Expand file tree Collapse file tree 2 files changed +5
-22
lines changed Expand file tree Collapse file tree 2 files changed +5
-22
lines changed Original file line number Diff line number Diff line change @@ -11815,21 +11815,9 @@ esac
11815
11815
11816
11816
libmpdec_machine=unknown
11817
11817
if test "$libmpdec_system" = Darwin; then
11818
- case $MACOSX_DEFAULT_ARCH in #(
11819
- i386) :
11820
- libmpdec_machine=ansi32 ;; #(
11821
- ppc) :
11822
- libmpdec_machine=ansi32 ;; #(
11823
- x86_64) :
11824
- libmpdec_machine=x64 ;; #(
11825
- ppc64) :
11826
- libmpdec_machine=ansi64 ;; #(
11827
- arm64) :
11828
- libmpdec_machine=ansi64 ;; #(
11829
- *) :
11818
+ # universal here means: build libmpdec with the same arch options
11819
+ # the python interpreter was built with
11830
11820
libmpdec_machine=universal
11831
- ;;
11832
- esac
11833
11821
elif test $ac_cv_sizeof_size_t -eq 8; then
11834
11822
if test "$ac_cv_gcc_asm_for_x64" = yes; then
11835
11823
libmpdec_machine=x64
Original file line number Diff line number Diff line change @@ -3295,14 +3295,9 @@ AS_CASE([$ac_sys_system],
3295
3295
3296
3296
libmpdec_machine=unknown
3297
3297
if test "$libmpdec_system" = Darwin; then
3298
- AS_CASE ( [ $MACOSX_DEFAULT_ARCH] ,
3299
- [ i386] , [ libmpdec_machine=ansi32] ,
3300
- [ ppc] , [ libmpdec_machine=ansi32] ,
3301
- [ x86_64] , [ libmpdec_machine=x64] ,
3302
- [ ppc64] , [ libmpdec_machine=ansi64] ,
3303
- [ arm64] , [ libmpdec_machine=ansi64] ,
3304
- [ libmpdec_machine=universal]
3305
- )
3298
+ # universal here means: build libmpdec with the same arch options
3299
+ # the python interpreter was built with
3300
+ libmpdec_machine=universal
3306
3301
elif test $ac_cv_sizeof_size_t -eq 8; then
3307
3302
if test "$ac_cv_gcc_asm_for_x64" = yes; then
3308
3303
libmpdec_machine=x64
You can’t perform that action at this time.
0 commit comments