[lib/ChangeLog]
[gnulib.git] / m4 / lchown.m4
1 #serial 10
2
3 dnl Copyright (C) 1998, 2001, 2003, 2004, 2005, 2006 Free Software
4 dnl 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.
12
13 AC_DEFUN([gl_FUNC_LCHOWN],
14 [
15   AC_REQUIRE([AC_TYPE_UID_T])
16   AC_REQUIRE([gl_FUNC_CHOWN])
17   AC_REQUIRE([gl_STAT_MACROS])
18   AC_CHECK_DECLS_ONCE([lchown])
19   AC_REPLACE_FUNCS(lchown)
20 ])