Mercurial > hg > octave-shane > gnulib-hg
annotate m4/lchown.m4 @ 7798:d58de0c4e214
2007-01-08 Bruno Haible <bruno@clisp.org>
* m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
* lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
PROVIDE_CANONICALIZE_FILENAME_MODE.
* modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Mon, 08 Jan 2007 21:31:56 +0000 |
parents | 45c727466eb8 |
children | 04a20e8bea33 |
rev | line source |
---|---|
7581
45c727466eb8
Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
Paul Eggert <eggert@cs.ucla.edu>
parents:
7409
diff
changeset
|
1 #serial 11 |
5594
5ef33e9d78e3
(gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
2 |
7172
be9e01d008cb
Avoid the need for AC_LIBSOURCES in m4 macros.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6193
diff
changeset
|
3 dnl Copyright (C) 1998, 2001, 2003, 2004, 2005, 2006 Free Software |
be9e01d008cb
Avoid the need for AC_LIBSOURCES in m4 macros.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6193
diff
changeset
|
4 dnl Foundation, Inc. |
be9e01d008cb
Avoid the need for AC_LIBSOURCES in m4 macros.
Paul Eggert <eggert@cs.ucla.edu>
parents:
6193
diff
changeset
|
5 |
5594
5ef33e9d78e3
(gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
6 dnl This file is free software; the Free Software Foundation |
5ef33e9d78e3
(gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
7 dnl gives unlimited permission to copy and/or distribute it, |
5ef33e9d78e3
(gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
Paul Eggert <eggert@cs.ucla.edu>
parents:
5016
diff
changeset
|
8 dnl with or without modifications, as long as this notice is preserved. |
1371 | 9 |
10 dnl From Jim Meyering. | |
11 dnl Provide lchown on systems that lack it. | |
12 | |
5016
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
4108
diff
changeset
|
13 AC_DEFUN([gl_FUNC_LCHOWN], |
1371 | 14 [ |
15 AC_REQUIRE([AC_TYPE_UID_T]) | |
6192
cd9342eda631
Require gl_FUNC_CHOWN, for the definition of
Jim Meyering <jim@meyering.net>
parents:
5813
diff
changeset
|
16 AC_REQUIRE([gl_FUNC_CHOWN]) |
7409 | 17 AC_CHECK_DECLS_ONCE([lchown]) |
1371 | 18 AC_REPLACE_FUNCS(lchown) |
19 ]) |