summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2010-04-28 10:32:30 (GMT)
committerJesus Cea <jcea@jcea.es>2010-04-28 10:32:30 (GMT)
commit616de77779fe9732b54d2c7cddfea62afff28a88 (patch)
tree5687add989ba28fa49c20f08819d5d41c8e734f8 /configure
parent6a10281d3359de890519c23d0318742018c843a3 (diff)
downloadcpython-616de77779fe9732b54d2c7cddfea62afff28a88.zip
cpython-616de77779fe9732b54d2c7cddfea62afff28a88.tar.gz
cpython-616de77779fe9732b54d2c7cddfea62afff28a88.tar.bz2
Issue #3928: Support 'os.mknod()' in Solaris
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/configure b/configure
index 697df6d..efa6e6b 100755
--- a/configure
+++ b/configure
@@ -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 ()
{