e0dc7801ef819fde13e75d4a22bc4bfb1f5c2e71
[gnulib.git] / m4 / link.m4
1 # link.m4 serial 7
2 dnl Copyright (C) 2009-2012 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
7 AC_DEFUN([gl_FUNC_LINK],
8 [
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
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          [gl_cv_func_link_works="guessing no"])
40        rm -f conftest.a conftest.b conftest.lnk])
41     if test "$gl_cv_func_link_works" != yes; then
42       REPLACE_LINK=1
43     fi
44   fi
45 ])