1#serial 11
2
3dnl Copyright (C) 1998, 2001, 2003, 2004, 2005, 2006 Free Software
4dnl Foundation, Inc.
5
6dnl This file is free software; the Free Software Foundation
7dnl gives unlimited permission to copy and/or distribute it,
8dnl with or without modifications, as long as this notice is preserved.
9
10dnl From Jim Meyering.
11dnl Provide lchown on systems that lack it.
12
13AC_DEFUN([gl_FUNC_LCHOWN],
14[
15  AC_REQUIRE([AC_TYPE_UID_T])
16  AC_REQUIRE([gl_FUNC_CHOWN])
17  AC_CHECK_DECLS_ONCE([lchown])
18  AC_REPLACE_FUNCS(lchown)
19])
20