symlinkat: new module
[gnulib.git] / m4 / symlinkat.m4
1 # serial 1
2 # See if we need to provide symlinkat/readlinkat 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_SYMLINKAT],
12 [
13   AC_REQUIRE([gl_FUNC_OPENAT])
14   AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15   AC_CHECK_FUNCS_ONCE([symlink symlinkat readlinkat])
16   if test $ac_cv_func_symlinkat = no; then
17     # No known system has readlinkat but not symlinkat
18     HAVE_SYMLINKAT=0
19     HAVE_READLINKAT=0
20     AC_LIBOBJ([symlinkat])
21   fi
22 ])