From 3a7dffa4cec84c94685fc9dccbded8ee41904fd5 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 23 Aug 2013 21:01:48 -0500 Subject: 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') 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 ]], [[getpgrp(0);]])], [AC_DEFINE(GETPGRP_HAVE_ARG, 1, [Define if getpgrp() must be called as getpgrp(0).])], -- cgit v1.2.1