readlink.m4 2.1 KB

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