1 # getcwd.m4 - check for working getcwd that is compatible with glibc
3 # Copyright (C) 2001, 2003-2007, 2009-2017 Free Software Foundation, Inc.
4 # This file is free software; the Free Software Foundation
5 # gives unlimited permission to copy and/or distribute it,
6 # with or without modifications, as long as this notice is preserved.
8 # Written by Paul Eggert.
11 AC_DEFUN([gl_FUNC_GETCWD_NULL],
13 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
14 AC_CHECK_HEADERS_ONCE([unistd.h])
15 AC_CACHE_CHECK([whether getcwd (NULL, 0) allocates memory for result],
16 [gl_cv_func_getcwd_null],
17 [AC_RUN_IFELSE([AC_LANG_PROGRAM([[
21 # else /* on Windows with MSVC */
28 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
29 /* mingw cwd does not start with '/', but getcwd does allocate.
30 However, mingw fails to honor non-zero size. */
36 char *f = getcwd (NULL, 0);
40 { free (f); return 3; }
42 { free (f); return 4; }
48 [gl_cv_func_getcwd_null=yes],
49 [gl_cv_func_getcwd_null=no],
51 # Guess yes on glibc systems.
52 *-gnu* | gnu*) gl_cv_func_getcwd_null="guessing yes";;
53 # Guess yes on Cygwin.
54 cygwin*) gl_cv_func_getcwd_null="guessing yes";;
55 # If we don't know, assume the worst.
56 *) gl_cv_func_getcwd_null="guessing no";;
61 AC_DEFUN([gl_FUNC_GETCWD_SIGNATURE],
63 AC_CACHE_CHECK([for getcwd with POSIX signature],
64 [gl_cv_func_getcwd_posix_signature],
67 [[#include <unistd.h>]],
72 char *getcwd (char *, size_t);
75 [gl_cv_func_getcwd_posix_signature=yes],
76 [gl_cv_func_getcwd_posix_signature=no])
80 dnl Guarantee that getcwd will malloc with a NULL first argument. Assumes
81 dnl that either the system getcwd is robust, or that calling code is okay
82 dnl with spurious failures when run from a directory with an absolute name
83 dnl larger than 4k bytes.
85 dnl Assumes that getcwd exists; if you are worried about obsolete
86 dnl platforms that lacked getcwd(), then you need to use the GPL module.
87 AC_DEFUN([gl_FUNC_GETCWD_LGPL],
89 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
90 AC_REQUIRE([gl_FUNC_GETCWD_NULL])
91 AC_REQUIRE([gl_FUNC_GETCWD_SIGNATURE])
93 case $gl_cv_func_getcwd_null,$gl_cv_func_getcwd_posix_signature in
96 dnl Minimal replacement lib/getcwd-lgpl.c.
102 dnl Check for all known getcwd bugs; useful for a program likely to be
103 dnl executed from an arbitrary location.
104 AC_DEFUN([gl_FUNC_GETCWD],
106 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
107 AC_REQUIRE([gl_FUNC_GETCWD_NULL])
108 AC_REQUIRE([gl_FUNC_GETCWD_SIGNATURE])
109 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
114 gl_cv_func_getcwd_path_max=yes
117 gl_FUNC_GETCWD_PATH_MAX
118 case "$gl_cv_func_getcwd_null" in
120 gl_FUNC_GETCWD_ABORT_BUG([gl_abort_bug=yes])
125 dnl Define HAVE_MINIMALLY_WORKING_GETCWD and HAVE_PARTLY_WORKING_GETCWD
127 case "$gl_cv_func_getcwd_path_max" in
128 "no"|"no, it has the AIX bug") ;;
130 AC_DEFINE([HAVE_MINIMALLY_WORKING_GETCWD], [1],
131 [Define to 1 if getcwd minimally works, that is, its result can be
132 trusted when it succeeds.])
135 case "$gl_cv_func_getcwd_path_max" in
136 "no, but it is partly working")
137 AC_DEFINE([HAVE_PARTLY_WORKING_GETCWD], [1],
138 [Define to 1 if getcwd works, except it sometimes fails when it
139 shouldn't, setting errno to ERANGE, ENAMETOOLONG, or ENOENT.])
141 "yes, but with shorter paths")
142 AC_DEFINE([HAVE_GETCWD_SHORTER], [1],
143 [Define to 1 if getcwd works, but with shorter paths
144 than is generally tested with the replacement.])
148 if { case "$gl_cv_func_getcwd_null" in *yes) false;; *) true;; esac; } \
149 || test $gl_cv_func_getcwd_posix_signature != yes \
150 || { case "$gl_cv_func_getcwd_path_max" in *yes*) false;; *) true;; esac; } \
151 || test $gl_abort_bug = yes; then
156 # Prerequisites of lib/getcwd.c, when full replacement is in effect.
157 AC_DEFUN([gl_PREREQ_GETCWD],
159 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
160 AC_REQUIRE([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO])