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