]> code.delx.au - gnu-emacs/blob - m4/readlinkat.m4
Merge from origin/emacs-24
[gnu-emacs] / m4 / readlinkat.m4
1 # serial 4
2 # See if we need to provide readlinkat replacement.
3
4 dnl Copyright (C) 2009-2014 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_READLINKAT],
12 [
13 AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
14 AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
15 AC_CHECK_FUNCS_ONCE([readlinkat])
16 if test $ac_cv_func_readlinkat = no; then
17 HAVE_READLINKAT=0
18 else
19 AC_CACHE_CHECK([whether readlinkat signature is correct],
20 [gl_cv_decl_readlinkat_works],
21 [AC_COMPILE_IFELSE(
22 [AC_LANG_PROGRAM(
23 [[#include <unistd.h>
24 /* Check whether original declaration has correct type. */
25 ssize_t readlinkat (int, char const *, char *, size_t);]])],
26 [gl_cv_decl_readlinkat_works=yes],
27 [gl_cv_decl_readlinkat_works=no])])
28 if test "$gl_cv_decl_readlink_works" != yes; then
29 REPLACE_READLINKAT=1
30 fi
31 fi
32 ])