1 # getcwd.m4 - check for working getcwd that is compatible with glibc
3 # Copyright (C) 2001, 2003-2007, 2009-2013 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([[
20 # else /* on Windows with MSVC */
27 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
28 /* mingw cwd does not start with '/', but getcwd does allocate.
29 However, mingw fails to honor non-zero size. */
35 char *f = getcwd (NULL, 0);
46 [gl_cv_func_getcwd_null=yes],
47 [gl_cv_func_getcwd_null=no],
49 # Guess yes on glibc systems.
50 *-gnu*) gl_cv_func_getcwd_null="guessing yes";;
51 # Guess yes on Cygwin.
52 cygwin*) gl_cv_func_getcwd_null="guessing yes";;
53 # If we don't know, assume the worst.
54 *) gl_cv_func_getcwd_null="guessing no";;
59 AC_DEFUN([gl_FUNC_GETCWD_SIGNATURE],
61 AC_CACHE_CHECK([for getcwd with POSIX signature],
62 [gl_cv_func_getcwd_posix_signature],
65 [[#include <unistd.h>]],
70 char *getcwd (char *, size_t);
73 [gl_cv_func_getcwd_posix_signature=yes],
74 [gl_cv_func_getcwd_posix_signature=no])
78 dnl Guarantee that getcwd will malloc with a NULL first argument. Assumes
79 dnl that either the system getcwd is robust, or that calling code is okay
80 dnl with spurious failures when run from a directory with an absolute name
81 dnl larger than 4k bytes.
83 dnl Assumes that getcwd exists; if you are worried about obsolete
84 dnl platforms that lacked getcwd(), then you need to use the GPL module.
85 AC_DEFUN([gl_FUNC_GETCWD_LGPL],
87 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
88 AC_REQUIRE([gl_FUNC_GETCWD_NULL])
89 AC_REQUIRE([gl_FUNC_GETCWD_SIGNATURE])
91 case $gl_cv_func_getcwd_null,$gl_cv_func_getcwd_posix_signature in
94 dnl Minimal replacement lib/getcwd-lgpl.c.
100 dnl Check for all known getcwd bugs; useful for a program likely to be
101 dnl executed from an arbitrary location.
102 AC_DEFUN([gl_FUNC_GETCWD],
104 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
105 AC_REQUIRE([gl_FUNC_GETCWD_NULL])
106 AC_REQUIRE([gl_FUNC_GETCWD_SIGNATURE])
107 AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
112 gl_cv_func_getcwd_path_max=yes
115 gl_FUNC_GETCWD_PATH_MAX
116 case "$gl_cv_func_getcwd_null" in
118 gl_FUNC_GETCWD_ABORT_BUG([gl_abort_bug=yes])
123 dnl Define HAVE_MINIMALLY_WORKING_GETCWD and HAVE_PARTLY_WORKING_GETCWD
125 case "$gl_cv_func_getcwd_path_max" in
126 "no"|"no, it has the AIX bug") ;;
128 AC_DEFINE([HAVE_MINIMALLY_WORKING_GETCWD], [1],
129 [Define to 1 if getcwd minimally works, that is, its result can be
130 trusted when it succeeds.])
133 case "$gl_cv_func_getcwd_path_max" in
134 "no, but it is partly working")
135 AC_DEFINE([HAVE_PARTLY_WORKING_GETCWD], [1],
136 [Define to 1 if getcwd works, except it sometimes fails when it
137 shouldn't, setting errno to ERANGE, ENAMETOOLONG, or ENOENT.])
141 if { case "$gl_cv_func_getcwd_null" in *yes) false;; *) true;; esac; } \
142 || test $gl_cv_func_getcwd_posix_signature != yes \
143 || test "$gl_cv_func_getcwd_path_max" != yes \
144 || test $gl_abort_bug = yes; then
149 # Prerequisites of lib/getcwd.c, when full replacement is in effect.
150 AC_DEFUN([gl_PREREQ_GETCWD],
152 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
153 AC_REQUIRE([gl_CHECK_TYPE_STRUCT_DIRENT_D_INO])