fchdir.m4 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # fchdir.m4 serial 26
  2. dnl Copyright (C) 2006-2021 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. AC_DEFUN([gl_FUNC_FCHDIR],
  7. [
  8. AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
  9. AC_REQUIRE([gl_DIRENT_H_DEFAULTS])
  10. AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
  11. AC_CHECK_DECLS_ONCE([fchdir])
  12. if test $ac_cv_have_decl_fchdir = no; then
  13. HAVE_DECL_FCHDIR=0
  14. fi
  15. AC_REQUIRE([gl_TEST_FCHDIR])
  16. if test $HAVE_FCHDIR = 0; then
  17. AC_LIBOBJ([fchdir])
  18. gl_PREREQ_FCHDIR
  19. AC_DEFINE([REPLACE_FCHDIR], [1],
  20. [Define to 1 if gnulib's fchdir() replacement is used.])
  21. dnl We must also replace anything that can manipulate a directory fd,
  22. dnl to keep our bookkeeping up-to-date. We don't have to replace
  23. dnl fstatat, since no platform has fstatat but lacks fchdir.
  24. AC_CACHE_CHECK([whether open can visit directories],
  25. [gl_cv_func_open_directory_works],
  26. [AC_RUN_IFELSE(
  27. [AC_LANG_PROGRAM(
  28. [[#include <fcntl.h>
  29. ]GL_MDA_DEFINES],
  30. [[return open(".", O_RDONLY) < 0;]])],
  31. [gl_cv_func_open_directory_works=yes],
  32. [gl_cv_func_open_directory_works=no],
  33. [case "$host_os" in
  34. # Guess yes on Linux systems.
  35. linux-* | linux) gl_cv_func_open_directory_works="guessing yes" ;;
  36. # Guess yes on glibc systems.
  37. *-gnu* | gnu*) gl_cv_func_open_directory_works="guessing yes" ;;
  38. # Guess no on native Windows.
  39. mingw*) gl_cv_func_open_directory_works="guessing no" ;;
  40. # If we don't know, obey --enable-cross-guesses.
  41. *) gl_cv_func_open_directory_works="$gl_cross_guess_normal" ;;
  42. esac
  43. ])])
  44. case "$gl_cv_func_open_directory_works" in
  45. *yes) ;;
  46. *)
  47. AC_DEFINE([REPLACE_OPEN_DIRECTORY], [1], [Define to 1 if open() should
  48. work around the inability to open a directory.])
  49. ;;
  50. esac
  51. fi
  52. ])
  53. # Determine whether to use the overrides in lib/fchdir.c.
  54. AC_DEFUN([gl_TEST_FCHDIR],
  55. [
  56. AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
  57. AC_CHECK_FUNCS_ONCE([fchdir])
  58. if test $ac_cv_func_fchdir = no; then
  59. HAVE_FCHDIR=0
  60. fi
  61. ])
  62. # Prerequisites of lib/fchdir.c.
  63. AC_DEFUN([gl_PREREQ_FCHDIR], [:])