Commit 616de777 authored by Jesus Cea's avatar Jesus Cea

Issue #3928: Support 'os.mknod()' in Solaris

parent 6a10281d
...@@ -324,6 +324,8 @@ Extension Modules ...@@ -324,6 +324,8 @@ Extension Modules
http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.8.4. http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.8.4.
This update drops support for Berkeley DB 4.0, and adds support for 4.8. This update drops support for Berkeley DB 4.0, and adds support for 4.8.
- Issue #3928: os.mknod() now available in Solaris, also.
- Issue #8142: Update libffi to the 3.0.9 release. - Issue #8142: Update libffi to the 3.0.9 release.
- Issue #8300: When passing a non-integer argument to struct.pack with any - Issue #8300: When passing a non-integer argument to struct.pack with any
......
#! /bin/sh #! /bin/sh
# From configure.in Revision: 80187 . # From configure.in Revision: 80443 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.7. # Generated by GNU Autoconf 2.61 for python 2.7.
# #
...@@ -6606,7 +6606,14 @@ _ACEOF ...@@ -6606,7 +6606,14 @@ _ACEOF
cat confdefs.h >>conftest.$ac_ext cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */ /* end confdefs.h. */
#if defined(MAJOR_IN_MKDEV)
#include <sys/mkdev.h>
#elif defined(MAJOR_IN_SYSMACROS)
#include <sys/sysmacros.h>
#else
#include <sys/types.h> #include <sys/types.h>
#endif
int int
main () main ()
{ {
......
...@@ -1373,7 +1373,14 @@ AC_MSG_RESULT($was_it_defined) ...@@ -1373,7 +1373,14 @@ AC_MSG_RESULT($was_it_defined)
# Check whether using makedev requires defining _OSF_SOURCE # Check whether using makedev requires defining _OSF_SOURCE
AC_MSG_CHECKING(for makedev) AC_MSG_CHECKING(for makedev)
AC_TRY_LINK([#include <sys/types.h> ], AC_TRY_LINK([
#if defined(MAJOR_IN_MKDEV)
#include <sys/mkdev.h>
#elif defined(MAJOR_IN_SYSMACROS)
#include <sys/sysmacros.h>
#else
#include <sys/types.h>
#endif ],
[ makedev(0, 0) ], [ makedev(0, 0) ],
ac_cv_has_makedev=yes, ac_cv_has_makedev=yes,
ac_cv_has_makedev=no) ac_cv_has_makedev=no)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment