diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:43:00 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2006-10-27 06:43:00 (GMT) |
commit | 2ec1df27855435f42a2181aef9d25b73e72a9e2b (patch) | |
tree | 30ccd5ad787e26ad0361fadb0b984797b0a33024 | |
parent | 62e58040c1c5fce264eb8d6c31cd6c05f4c6e265 (diff) | |
download | cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.zip cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.gz cpython-2ec1df27855435f42a2181aef9d25b73e72a9e2b.tar.bz2 |
Check for values.h.
-rw-r--r-- | Modules/_testcapimodule.c | 2 | ||||
-rwxr-xr-x | configure | 5 | ||||
-rw-r--r-- | configure.in | 2 | ||||
-rw-r--r-- | pyconfig.h.in | 3 |
4 files changed, 9 insertions, 3 deletions
diff --git a/Modules/_testcapimodule.c b/Modules/_testcapimodule.c index 0236c83..c5068ef 100644 --- a/Modules/_testcapimodule.c +++ b/Modules/_testcapimodule.c @@ -6,7 +6,9 @@ */ #include "Python.h" +#ifdef HAVE_VALUES_H #include <values.h> +#endif #include "structmember.h" #ifdef WITH_THREAD @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 52090 . +# From configure.in Revision: 52362 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.59 for python 2.5. # @@ -4632,6 +4632,7 @@ done + for ac_header in asm/types.h conio.h curses.h direct.h dlfcn.h errno.h \ fcntl.h grp.h \ io.h langinfo.h libintl.h ncurses.h poll.h process.h pthread.h \ @@ -4642,7 +4643,7 @@ sys/modem.h \ sys/param.h sys/poll.h sys/select.h sys/socket.h sys/statvfs.h sys/stat.h \ sys/time.h \ sys/times.h sys/types.h sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ -sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ +sys/resource.h netpacket/packet.h sysexits.h values.h bluetooth.h \ bluetooth/bluetooth.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` diff --git a/configure.in b/configure.in index cd9161b..8c2b954 100644 --- a/configure.in +++ b/configure.in @@ -1076,7 +1076,7 @@ sys/modem.h \ sys/param.h sys/poll.h sys/select.h sys/socket.h sys/statvfs.h sys/stat.h \ sys/time.h \ sys/times.h sys/types.h sys/un.h sys/utsname.h sys/wait.h pty.h libutil.h \ -sys/resource.h netpacket/packet.h sysexits.h bluetooth.h \ +sys/resource.h netpacket/packet.h sysexits.h values.h bluetooth.h \ bluetooth/bluetooth.h) AC_HEADER_DIRENT AC_HEADER_MAJOR diff --git a/pyconfig.h.in b/pyconfig.h.in index 8448439..750de15 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -700,6 +700,9 @@ /* Define to 1 if you have the <utime.h> header file. */ #undef HAVE_UTIME_H +/* Define to 1 if you have the <values.h> header file. */ +#undef HAVE_VALUES_H + /* Define to 1 if you have the `wait3' function. */ #undef HAVE_WAIT3 |