link.m4 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # link.m4 serial 8
  2. dnl Copyright (C) 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_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. ]],
  25. [[int result = 0;
  26. if (!link ("conftest.a", "conftest.b/"))
  27. result |= 1;
  28. #if HAVE_LSTAT
  29. if (!link ("conftest.lnk/", "conftest.b"))
  30. result |= 2;
  31. if (rename ("conftest.a", "conftest.b"))
  32. result |= 4;
  33. if (!link ("conftest.b", "conftest.lnk"))
  34. result |= 8;
  35. #endif
  36. return result;
  37. ]])],
  38. [gl_cv_func_link_works=yes], [gl_cv_func_link_works=no],
  39. [case "$host_os" in
  40. # Guess yes on glibc systems.
  41. *-gnu*) gl_cv_func_link_works="guessing yes" ;;
  42. # If we don't know, assume the worst.
  43. *) gl_cv_func_link_works="guessing no" ;;
  44. esac
  45. ])
  46. rm -f conftest.a conftest.b conftest.lnk])
  47. case "$gl_cv_func_link_works" in
  48. *yes) ;;
  49. *)
  50. REPLACE_LINK=1
  51. ;;
  52. esac
  53. fi
  54. ])