]> git.cworth.org Git - tar/blob - m4/lchown.m4
b719ed074c638a3bbca2ee1516831ca989b6381e
[tar] / m4 / lchown.m4
1 #serial 12
2 # Determine whether we need the lchown wrapper.
3
4 dnl Copyright (C) 1998, 2001, 2003, 2004, 2005, 2006, 2007 Free
5 dnl Software Foundation, 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.
13
14 AC_DEFUN([gl_FUNC_LCHOWN],
15 [
16   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
17   AC_REQUIRE([gl_FUNC_CHOWN])
18   AC_REPLACE_FUNCS(lchown)
19   if test $ac_cv_func_lchown = no; then
20     REPLACE_LCHOWN=1
21   fi
22 ])