Mercurial > hg > octave-nkf > gnulib-hg
annotate m4/lchmod.m4 @ 16201:8250f2777afc
maint: update all copyright year number ranges
Run "make update-copyright".
author | Jim Meyering <meyering@redhat.com> |
---|---|
date | Sun, 01 Jan 2012 10:04:58 +0100 |
parents | 97fc9a21a8fb |
children | e542fd46ad6f |
rev | line source |
---|---|
10664
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
1 #serial 3 |
6527 | 2 |
16201
8250f2777afc
maint: update all copyright year number ranges
Jim Meyering <meyering@redhat.com>
parents:
14079
diff
changeset
|
3 dnl Copyright (C) 2005-2006, 2008-2012 Free Software Foundation, Inc. |
6527 | 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 Paul Eggert. | |
9 dnl Provide a replacement for lchmod on hosts that lack it. | |
10 | |
11 AC_DEFUN([gl_FUNC_LCHMOD], | |
12 [ | |
10664
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
13 AC_REQUIRE([gl_SYS_STAT_H_DEFAULTS]) |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
14 |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
15 dnl Persuade glibc <sys/stat.h> to declare lchmod(). |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
16 AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
17 |
6527 | 18 AC_CHECK_FUNCS_ONCE([lchmod]) |
10664
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
19 if test $ac_cv_func_lchmod = no; then |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
20 HAVE_LCHMOD=0 |
3eb22f9808e0
Move the lchmod() declaration to <sys/stat.h>.
Bruno Haible <bruno@clisp.org>
parents:
7172
diff
changeset
|
21 fi |
6527 | 22 ]) |