File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1098,6 +1098,8 @@ Extension Modules
10981098Build
10991099-----
11001100
1101+ - Issue #3928: os.mknod() now available in Solaris, also.
1102+
11011103- Issue #3326: Build Python without -fno-strict-aliasing when the gcc does not
11021104 give false warnings.
11031105
Original file line number Diff line number Diff line change 11#! /bin/sh
2- # From configure.in Revision: 80478 .
2+ # From configure.in Revision: 80481 .
33# Guess values for system-dependent variables and create Makefiles.
44# Generated by GNU Autoconf 2.65 for python 3.2.
55#
@@ -1928,11 +1928,11 @@ else
19281928 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
19291929/* end confdefs.h. */
19301930$ac_includes_default
1931- enum { N = $2 / 2 - 1 };
19321931int
19331932main ()
19341933{
1935- static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
1934+ static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
1935+ 0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
19361936test_array [0] = 0
19371937
19381938 ;
@@ -1943,11 +1943,11 @@ if ac_fn_c_try_compile "$LINENO"; then :
19431943 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
19441944/* end confdefs.h. */
19451945$ac_includes_default
1946- enum { N = $2 / 2 - 1 };
19471946int
19481947main ()
19491948{
1950- static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
1949+ static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
1950+ ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
19511951 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))];
19521952test_array [0] = 0
19531953
@@ -6274,11 +6274,19 @@ $as_echo_n "checking for makedev... " >&6; }
62746274cat confdefs.h - << _ACEOF >conftest.$ac_ext
62756275/* end confdefs.h. */
62766276
6277- #include <sys/types.h>
6277+ #if defined(MAJOR_IN_MKDEV)
6278+ #include <sys/mkdev.h>
6279+ #elif defined(MAJOR_IN_SYSMACROS)
6280+ #include <sys/sysmacros.h>
6281+ #else
6282+ #include <sys/types.h>
6283+ #endif
6284+
62786285int
62796286main ()
62806287{
6281- makedev(0, 0)
6288+
6289+ makedev(0, 0)
62826290 ;
62836291 return 0;
62846292}
Original file line number Diff line number Diff line change @@ -1314,8 +1314,16 @@ AC_MSG_RESULT($was_it_defined)
13141314
13151315# Check whether using makedev requires defining _OSF_SOURCE
13161316AC_MSG_CHECKING(for makedev)
1317- AC_LINK_IFELSE([
1318- AC_LANG_PROGRAM([[#include <sys/types.h> ]], [[ makedev(0, 0) ]])
1317+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[
1318+ #if defined(MAJOR_IN_MKDEV)
1319+ #include <sys/mkdev.h>
1320+ #elif defined(MAJOR_IN_SYSMACROS)
1321+ #include <sys/sysmacros.h>
1322+ #else
1323+ #include <sys/types.h>
1324+ #endif
1325+ ]], [[
1326+ makedev(0, 0) ]])
13191327],[ac_cv_has_makedev=yes],[ac_cv_has_makedev=no])
13201328if test "$ac_cv_has_makedev" = "no"; then
13211329 # we didn't link, try if _OSF_SOURCE will allow us to link
You can’t perform that action at this time.
0 commit comments