diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2000-06-18 14:54:13 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2000-06-18 14:54:13 (GMT) |
commit | 898527b14def9744dbb1ac8feb2bf118412e7d89 (patch) | |
tree | 5572ebf61f7cf0ecbd7aec6558c6ee50c8d11d98 /configure.in | |
parent | 6fef30e1fad0775b80e37d9465fe5cbe3531418d (diff) | |
download | cpython-898527b14def9744dbb1ac8feb2bf118412e7d89.zip cpython-898527b14def9744dbb1ac8feb2bf118412e7d89.tar.gz cpython-898527b14def9744dbb1ac8feb2bf118412e7d89.tar.bz2 |
Check for existence of mremap()
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index bd1b674..6735b69 100644 --- a/configure.in +++ b/configure.in @@ -763,7 +763,8 @@ fi AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r dlopen execv \ flock fork fsync fdatasync fpathconf ftime ftruncate \ getgroups getlogin getpeername getpgrp getpid getpwent gettimeofday getwd \ - kill link lstat mkfifo mktime nice pathconf pause plock pthread_init \ + kill link lstat mkfifo mktime mremap \ + nice pathconf pause plock pthread_init \ putenv readlink \ select setgid setlocale setuid setsid setpgid setpgrp setvbuf \ sigaction siginterrupt sigrelse strftime strptime symlink sysconf \ |