]> git.cworth.org Git - tar/blob - m4/lchown.m4
upstream: Fix extraction of device nodes.
[tar] / m4 / lchown.m4
1 # serial 15
2 # Determine whether we need the lchown wrapper.
3
4 dnl Copyright (C) 1998, 2001, 2003-2007, 2009-2010 Free Software Foundation,
5 dnl Inc.
6
7 dnl This file is free software; the Free Software Foundation
8 dnl gives unlimited permission to copy and/or distribute it,
9 dnl with or without modifications, as long as this notice is preserved.
10
11 dnl From Jim Meyering.
12 dnl Provide lchown on systems that lack it, and work around bugs
13 dnl on systems that have it.
14
15 AC_DEFUN([gl_FUNC_LCHOWN],
16 [
17   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
18   AC_REQUIRE([gl_FUNC_CHOWN])
19   AC_CHECK_FUNCS_ONCE([lchmod])
20   AC_REPLACE_FUNCS([lchown])
21   if test $ac_cv_func_lchown = no; then
22     HAVE_LCHOWN=0
23   elif test "$gl_cv_func_chown_slash_works" != yes \
24       || test "$gl_cv_func_chown_ctime_works" != yes; then
25     dnl Trailing slash and ctime bugs in chown also occur in lchown.
26     AC_LIBOBJ([lchown])
27     REPLACE_LCHOWN=1
28   fi
29 ])