Skip to content

Commit 7497e91

Browse files
committed
run autoreconf
1 parent 1d9d16e commit 7497e91

2 files changed

Lines changed: 20 additions & 9 deletions

File tree

configure

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 84948 .
2+
# From configure.in Revision: 85556 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.65 for python 2.7.
55
#
@@ -1934,11 +1934,11 @@ else
19341934
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
19351935
/* end confdefs.h. */
19361936
$ac_includes_default
1937+
enum { N = $2 / 2 - 1 };
19371938
int
19381939
main ()
19391940
{
1940-
static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
1941-
0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
1941+
static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
19421942
test_array [0] = 0
19431943
19441944
;
@@ -1949,11 +1949,11 @@ if ac_fn_c_try_compile "$LINENO"; then :
19491949
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
19501950
/* end confdefs.h. */
19511951
$ac_includes_default
1952+
enum { N = $2 / 2 - 1 };
19521953
int
19531954
main ()
19541955
{
1955-
static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
1956-
($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
1956+
static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
19571957
< ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))];
19581958
test_array [0] = 0
19591959
@@ -13738,6 +13738,14 @@ $as_echo "#define socklen_t int" >>confdefs.h
1373813738
fi
1373913739
1374013740
13741+
case $ac_sys_system in
13742+
AIX*)
13743+
13744+
$as_echo "#define HAVE_BROKEN_PIPE_BUF 1" >>confdefs.h
13745+
;;
13746+
esac
13747+
13748+
1374113749
1374213750
1374313751
for h in `(cd $srcdir;echo Python/thread_*.h)`
@@ -14293,8 +14301,8 @@ esac
1429314301
1429414302
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1429514303
# Files that config.status was made for.
14296-
config_files="`echo $ac_config_files`"
14297-
config_headers="`echo $ac_config_headers`"
14304+
config_files="$ac_config_files"
14305+
config_headers="$ac_config_headers"
1429814306
1429914307
_ACEOF
1430014308

pyconfig.h.in

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/* Define if --enable-ipv6 is specified */
3737
#undef ENABLE_IPV6
3838

39-
/* Define if flock needs to be linked with bsd library */
39+
/* Define if flock needs to be linked with bsd library. */
4040
#undef FLOCK_NEEDS_LIBBSD
4141

4242
/* Define if getpgrp() must be called as getpgrp(0). */
@@ -82,6 +82,9 @@
8282
/* Define if nice() returns success/failure instead of the new priority. */
8383
#undef HAVE_BROKEN_NICE
8484

85+
/* Define if the system reports an invalid PIPE_BUF value. */
86+
#undef HAVE_BROKEN_PIPE_BUF
87+
8588
/* Define if poll() sets errno on invalid file descriptors. */
8689
#undef HAVE_BROKEN_POLL
8790

@@ -216,7 +219,7 @@
216219
/* Define to 1 if you have the `finite' function. */
217220
#undef HAVE_FINITE
218221

219-
/* Define if you have the 'flock' function. */
222+
/* Define to 1 if you have the `flock' function. */
220223
#undef HAVE_FLOCK
221224

222225
/* Define to 1 if you have the `fork' function. */

0 commit comments

Comments
 (0)