(jm_FUNC_CHOWN): Add a check to verify that the
[gnulib.git] / m4 / chown.m4
1 #serial 2
2
3 dnl From Jim Meyering.
4 dnl Determine whether chown accepts arguments of -1 for uid and gid.
5 dnl If it doesn't, arrange to use the replacement function.
6 dnl
7 dnl If you use this macro in a package, you should
8 dnl add the following two lines to acconfig.h:
9 dnl  /* Define to rpl_chown if the replacement function should be used.  */
10 dnl  #undef chown
11 dnl
12
13 AC_DEFUN(jm_FUNC_CHOWN,
14 [AC_REQUIRE([AC_TYPE_UID_T])dnl
15  test -z "$ac_cv_header_unistd_h" \
16    && AC_CHECK_HEADERS(unistd.h)
17  AC_CACHE_CHECK([for working chown], jm_cv_func_working_chown,
18   [AC_TRY_RUN([
19 #   include <sys/types.h>
20 #   include <stat.h>
21 #   include <fcntl.h>
22 #   ifdef HAVE_UNISTD_H
23 #    include <unistd.h>
24 #   endif
25
26     int
27     main ()
28     {
29       char *f = "conftestchown";
30       if (creat (f, 0600) < 0)
31         exit (1);
32       if (stat (f, &before) < 0)
33         exit (1);
34       if (chown (f, (uid_t) -1, (gid_t) -1) == -1)
35         exit (1);
36       if (stat (f, &after) < 0)
37         exit (1);
38       exit ((before.st_uid == after.st_uid
39              && before.st_gid == after.st_gid) ? 0 : 1);
40     }
41               ],
42              jm_cv_func_working_chown=yes,
43              jm_cv_func_working_chown=no,
44              dnl When crosscompiling, assume chown is broken.
45              jm_cv_func_working_chown=no)
46   ])
47   if test $jm_cv_func_working_chown = no; then
48     LIBOBJS="$LIBOBJS chown.o"
49     AC_DEFINE_UNQUOTED(chown, rpl_chown)
50   fi
51 ])