link.m4 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # link.m4 serial 8
  2. dnl Copyright (C) 2009-2017 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_LINK],
  7. [
  8. AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
  9. AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles
  10. AC_CHECK_FUNCS_ONCE([link])
  11. if test $ac_cv_func_link = no; then
  12. HAVE_LINK=0
  13. else
  14. AC_CACHE_CHECK([whether link obeys POSIX],
  15. [gl_cv_func_link_works],
  16. [touch conftest.a
  17. # Assume that if we have lstat, we can also check symlinks.
  18. if test $ac_cv_func_lstat = yes; then
  19. ln -s conftest.a conftest.lnk
  20. fi
  21. AC_RUN_IFELSE(
  22. [AC_LANG_PROGRAM(
  23. [[#include <unistd.h>
  24. #include <stdio.h>
  25. ]],
  26. [[int result = 0;
  27. if (!link ("conftest.a", "conftest.b/"))
  28. result |= 1;
  29. #if HAVE_LSTAT
  30. if (!link ("conftest.lnk/", "conftest.b"))
  31. result |= 2;
  32. if (rename ("conftest.a", "conftest.b"))
  33. result |= 4;
  34. if (!link ("conftest.b", "conftest.lnk"))
  35. result |= 8;
  36. #endif
  37. return result;
  38. ]])],
  39. [gl_cv_func_link_works=yes], [gl_cv_func_link_works=no],
  40. [case "$host_os" in
  41. # Guess yes on glibc systems.
  42. *-gnu*) gl_cv_func_link_works="guessing yes" ;;
  43. # If we don't know, assume the worst.
  44. *) gl_cv_func_link_works="guessing no" ;;
  45. esac
  46. ])
  47. rm -f conftest.a conftest.b conftest.lnk])
  48. case "$gl_cv_func_link_works" in
  49. *yes) ;;
  50. *)
  51. REPLACE_LINK=1
  52. ;;
  53. esac
  54. fi
  55. ])