symlink: new module, for Solaris 9 bug
[gnulib.git] / m4 / symlink.m4
1 # serial 1
2 # See if we need to provide symlink replacement.
3
4 dnl Copyright (C) 2009 Free Software Foundation, Inc.
5 dnl This file is free software; the Free Software Foundation
6 dnl gives unlimited permission to copy and/or distribute it,
7 dnl with or without modifications, as long as this notice is preserved.
8
9 # Written by Eric Blake.
10
11 AC_DEFUN([gl_FUNC_SYMLINK],
12 [
13   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
14   AC_CHECK_FUNCS_ONCE([symlink])
15   dnl The best we can do on mingw is provide a dummy that always fails, so
16   dnl that compilation can proceed with fewer ifdefs.  On Solaris 9, we
17   dnl want to fix a bug with trailing slash handling.
18   if test $ac_cv_func_symlink = no; then
19     HAVE_SYMLINK=0
20     AC_LIBOBJ([symlink])
21   else
22     AC_CACHE_CHECK([whether symlink handles trailing slash correctly],
23       [gl_cv_func_symlink_works],
24       [AC_RUN_IFELSE(
25          [AC_LANG_PROGRAM(
26            [[#include <unistd.h>
27 ]], [[return !symlink ("a", "conftest.link/");]])],
28          [gl_cv_func_symlink_works=yes], [gl_cv_func_symlink_works=no],
29          [gl_cv_func_symlink_works="guessing no"])])
30     if test "$gl_cv_func_symlink_works" != yes; then
31       REPLACE_SYMLINK=1
32       AC_LIBOBJ([symlink])
33     fi
34   fi
35 ])