diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 06:33:08 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-24 06:33:08 (GMT) |
commit | 791bfda2b364ec91e5affab2fc0a60ac1701f392 (patch) | |
tree | 686873e043a38e6326b17d07d7f641d31df4fd99 /configure | |
parent | c547b46c067656b39c564a84a2979ec985e7b869 (diff) | |
download | cpython-791bfda2b364ec91e5affab2fc0a60ac1701f392.zip cpython-791bfda2b364ec91e5affab2fc0a60ac1701f392.tar.gz cpython-791bfda2b364ec91e5affab2fc0a60ac1701f392.tar.bz2 |
Autocheck for snprintf, and use sprintf if it is not available.
Remove declaration of h_errno, since it is supposedly declared in netdb.h.
Changes proposed by itojun.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.232 +# From configure.in Revision: 1.233 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -4519,7 +4519,7 @@ for ac_func in alarm chown clock confstr ctermid ctermid_r execv \ nice pathconf pause plock poll pthread_init \ putenv readlink \ select setegid seteuid setgid \ - setlocale setregid setreuid setsid setpgid setuid setvbuf \ + setlocale setregid setreuid setsid setpgid setuid setvbuf snprintf \ sigaction siginterrupt sigrelse strftime strptime symlink sysconf \ tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ truncate uname waitpid _getpty getpriority |