diff options
author | Jim Meyering <jim@meyering.net> | 2006-01-11 15:25:30 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2006-01-11 15:25:30 +0000 |
commit | 32b8a61ecf203257fd35840d94071f69fd6c90b8 (patch) | |
tree | b2c0b312c65fcfdfba7c92234584efcc59256222 /m4 | |
parent | dc9da6bde066793c407ce12b2a178a1cf8050308 (diff) | |
download | coreutils-32b8a61ecf203257fd35840d94071f69fd6c90b8.tar.xz |
(gl_FUNC_OPENAT): Require and compile fchmodat.c.
Check for the lchmod function.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/openat.m4 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/m4/openat.m4 b/m4/openat.m4 index d7118cae3..4edb1920a 100644 --- a/m4/openat.m4 +++ b/m4/openat.m4 @@ -1,7 +1,7 @@ -#serial 7 -# See if we need to use our replacement for Solaris' openat function. +#serial 8 +# See if we need to use our replacement for Solaris' openat et al functions. -dnl Copyright (C) 2004, 2005 Free Software Foundation, Inc. +dnl Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. @@ -12,12 +12,15 @@ AC_DEFUN([gl_FUNC_OPENAT], [ AC_LIBSOURCES([openat.c, openat.h, openat-priv.h, openat-die.c]) AC_LIBSOURCES([mkdirat.c]) + AC_LIBSOURCES([fchmodat.c]) - # No system provides a mkdirat function; compile it unconditionally. + # No system provides these functions; compile them unconditionally. AC_LIBOBJ([mkdirat]) + AC_LIBOBJ([fchmodat]) AC_LIBOBJ([openat-die]) AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) + AC_CHECK_FUNCS_ONCE([lchmod]) AC_CHECK_FUNCS_ONCE([fdopendir]) AC_REPLACE_FUNCS(openat) case $ac_cv_func_openat in |