diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-03-24 13:39:54 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-03-24 13:39:54 (GMT) |
commit | 823725e93cdd85371eae53352dd83fc634e95694 (patch) | |
tree | 9c9a313f8f0859aaf6790aa4b4900adb6d1b3e60 /configure | |
parent | 6cf49cf10689bf2ff23fff05928daa23ecdf6fc2 (diff) | |
download | cpython-823725e93cdd85371eae53352dd83fc634e95694.zip cpython-823725e93cdd85371eae53352dd83fc634e95694.tar.gz cpython-823725e93cdd85371eae53352dd83fc634e95694.tar.bz2 |
Merged revisions 61846-61847 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61846 | martin.v.loewis | 2008-03-24 13:57:53 +0100 (Mo, 24 Mär 2008) | 2 lines
Install 2to3 script.
........
r61847 | martin.v.loewis | 2008-03-24 14:31:16 +0100 (Mo, 24 Mär 2008) | 2 lines
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: 61306 . +# From configure.in Revision: 61728 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 3.0. # @@ -15719,8 +15719,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 \ |