diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-08-23 21:01:48 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-08-23 21:01:48 -0500 |
commit | d79aa8d37b44eae6075909b6966153798c0200a1 (patch) | |
tree | 2c6ff6524de1d738524f7e41929fb23b06813d28 /configure.ac | |
parent | f7e20504a4e787b2cc11204f7cdd1ef2cff4e72d (diff) | |
download | cpython-d79aa8d37b44eae6075909b6966153798c0200a1.tar.gz |
remove support for compiling on systems without getcwd()
Do we need a fallback implementation of getcwd() from 1991 that claims to
support "really old Unix systems"? I don't think so.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 47f5c57924..e329c214cb 100644 --- a/configure.ac +++ b/configure.ac @@ -3094,7 +3094,7 @@ AC_CHECK_FUNCS(memmove) # check for long file support functions AC_CHECK_FUNCS(fseek64 fseeko fstatvfs ftell64 ftello statvfs) -AC_REPLACE_FUNCS(dup2 getcwd strdup) +AC_REPLACE_FUNCS(dup2 strdup) AC_CHECK_FUNCS(getpgrp, AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]], [[getpgrp(0);]])], [AC_DEFINE(GETPGRP_HAVE_ARG, 1, [Define if getpgrp() must be called as getpgrp(0).])], |