diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-03-24 13:31:16 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-03-24 13:31:16 (GMT) |
commit | aef18b1c67f11aec579eada382fabc3597e1aae2 (patch) | |
tree | be57880b5492d00ec0feeaee974d736045389f90 /configure | |
parent | cdbc977c0344cfe2294e8be69cd1acd77b3b79ad (diff) | |
download | cpython-aef18b1c67f11aec579eada382fabc3597e1aae2.zip cpython-aef18b1c67f11aec579eada382fabc3597e1aae2.tar.gz cpython-aef18b1c67f11aec579eada382fabc3597e1aae2.tar.bz2 |
Patch #2240: Implement signal.setitimer and signal.getitimer.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 61436 . +# From configure.in Revision: 61722 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 2.6. # @@ -15506,8 +15506,10 @@ echo "${ECHO_T}MACHDEP_OBJS" >&6; } -for ac_func in alarm bind_textdomain_codeset chown clock confstr \ - ctermid execv fchmod fchown fork fpathconf ftime ftruncate \ + + +for ac_func in alarm setitimer getitimer bind_textdomain_codeset chown \ + clock confstr ctermid execv fchmod fchown fork fpathconf ftime ftruncate \ gai_strerror getgroups getlogin getloadavg getpeername getpgid getpid \ getpriority getpwent getspnam getspent getsid getwd \ kill killpg lchmod lchown lstat mkfifo mknod mktime \ |