diff options
author | doko <doko@ubuntu.com> | 2012-06-30 17:05:13 +0200 |
---|---|---|
committer | doko <doko@ubuntu.com> | 2012-06-30 17:05:13 +0200 |
commit | b9a311d513de61c4db020a4b61777c7d78fd11b8 (patch) | |
tree | 189ba6781ff51cb3b1b619eb7cfbd360fe6f413f /configure | |
parent | 57de52b75470d96889a351bc4a56585b6e247378 (diff) | |
download | cpython-b9a311d513de61c4db020a4b61777c7d78fd11b8.tar.gz |
- Issue #3754: Some unrelated configure.ac cleanups.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -9860,13 +9860,13 @@ fi if test -z "$with_pymalloc" then with_pymalloc="yes" - ABIFLAGS="${ABIFLAGS}m" fi if test "$with_pymalloc" != "no" then $as_echo "#define WITH_PYMALLOC 1" >>confdefs.h + ABIFLAGS="${ABIFLAGS}m" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5 $as_echo "$with_pymalloc" >&6; } @@ -9964,8 +9964,13 @@ then else MACHDEP_OBJS="$MACHDEP_OBJS $extra_machdep_objs" fi -{ $as_echo "$as_me:${as_lineno-$LINENO}: result: MACHDEP_OBJS" >&5 -$as_echo "MACHDEP_OBJS" >&6; } +if test -z "$MACHDEP_OBJS"; then + { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 +$as_echo "none" >&6; } +else + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MACHDEP_OBJS" >&5 +$as_echo "$MACHDEP_OBJS" >&6; } +fi # checks for library functions for ac_func in alarm accept4 setitimer getitimer bind_textdomain_codeset chown \ @@ -11497,7 +11502,7 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_buggy_getaddrinfo" >&5 $as_echo "$ac_cv_buggy_getaddrinfo" >&6; } -if test $have_getaddrinfo = no -o "$ac_cv_buggy_getaddrinfo" = yes +if test $have_getaddrinfo = no || test "$ac_cv_buggy_getaddrinfo" = yes then if test $ipv6 = yes then |