(gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
[gnulib.git] / m4 / lchown.m4
1 #serial 6
2
3 dnl Copyright (C) 1998, 2001, 2003, 2004, Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 dnl From Jim Meyering.
9 dnl Provide lchown on systems that lack it.
10
11 AC_DEFUN([gl_FUNC_LCHOWN],
12 [
13   AC_LIBSOURCES([lchown.c, lchown.h])
14   AC_REQUIRE([AC_TYPE_UID_T])
15   AC_REPLACE_FUNCS(lchown)
16   if test $ac_cv_func_lchown = no; then
17     gl_PREREQ_LCHOWN
18   fi
19 ])
20
21 # Prerequisites of lib/lchown.c.
22 AC_DEFUN([gl_PREREQ_LCHOWN],
23 [
24   AC_REQUIRE([AC_HEADER_STAT])
25   :
26 ])