diff options
author | Jesus Cea <jcea@jcea.es> | 2010-04-28 10:32:30 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2010-04-28 10:32:30 (GMT) |
commit | 616de77779fe9732b54d2c7cddfea62afff28a88 (patch) | |
tree | 5687add989ba28fa49c20f08819d5d41c8e734f8 /configure | |
parent | 6a10281d3359de890519c23d0318742018c843a3 (diff) | |
download | cpython-616de77779fe9732b54d2c7cddfea62afff28a88.zip cpython-616de77779fe9732b54d2c7cddfea62afff28a88.tar.gz cpython-616de77779fe9732b54d2c7cddfea62afff28a88.tar.bz2 |
Issue #3928: Support 'os.mknod()' in Solaris
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 80187 . +# From configure.in Revision: 80443 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.7. # @@ -6606,7 +6606,14 @@ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* 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> +#endif int main () { |