readlink.m4 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # readlink.m4 serial 12
  2. dnl Copyright (C) 2003, 2007, 2009-2014 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_READLINK],
  7. [
  8. AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
  9. AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
  10. AC_CHECK_FUNCS_ONCE([readlink])
  11. if test $ac_cv_func_readlink = no; then
  12. HAVE_READLINK=0
  13. else
  14. AC_CACHE_CHECK([whether readlink signature is correct],
  15. [gl_cv_decl_readlink_works],
  16. [AC_COMPILE_IFELSE(
  17. [AC_LANG_PROGRAM(
  18. [[#include <unistd.h>
  19. /* Cause compilation failure if original declaration has wrong type. */
  20. ssize_t readlink (const char *, char *, size_t);]])],
  21. [gl_cv_decl_readlink_works=yes], [gl_cv_decl_readlink_works=no])])
  22. dnl Solaris 9 ignores trailing slash.
  23. dnl FreeBSD 7.2 dereferences only one level of links with trailing slash.
  24. AC_CACHE_CHECK([whether readlink handles trailing slash correctly],
  25. [gl_cv_func_readlink_works],
  26. [# We have readlink, so assume ln -s works.
  27. ln -s conftest.no-such conftest.link
  28. ln -s conftest.link conftest.lnk2
  29. AC_RUN_IFELSE(
  30. [AC_LANG_PROGRAM(
  31. [[#include <unistd.h>
  32. ]], [[char buf[20];
  33. return readlink ("conftest.lnk2/", buf, sizeof buf) != -1;]])],
  34. [gl_cv_func_readlink_works=yes], [gl_cv_func_readlink_works=no],
  35. [case "$host_os" in
  36. # Guess yes on glibc systems.
  37. *-gnu*) gl_cv_func_readlink_works="guessing yes" ;;
  38. # If we don't know, assume the worst.
  39. *) gl_cv_func_readlink_works="guessing no" ;;
  40. esac
  41. ])
  42. rm -f conftest.link conftest.lnk2])
  43. case "$gl_cv_func_readlink_works" in
  44. *yes)
  45. if test "$gl_cv_decl_readlink_works" != yes; then
  46. REPLACE_READLINK=1
  47. fi
  48. ;;
  49. *)
  50. AC_DEFINE([READLINK_TRAILING_SLASH_BUG], [1], [Define to 1 if readlink
  51. fails to recognize a trailing slash.])
  52. REPLACE_READLINK=1
  53. ;;
  54. esac
  55. fi
  56. ])
  57. # Like gl_FUNC_READLINK, except prepare for separate compilation
  58. # (no REPLACE_READLINK, no AC_LIBOBJ).
  59. AC_DEFUN([gl_FUNC_READLINK_SEPARATE],
  60. [
  61. AC_CHECK_FUNCS_ONCE([readlink])
  62. gl_PREREQ_READLINK
  63. ])
  64. # Prerequisites of lib/readlink.c.
  65. AC_DEFUN([gl_PREREQ_READLINK],
  66. [
  67. :
  68. ])