# HG changeset patch # User Paul Eggert # Date 1350439089 25200 # Node ID 201a1d1767a645cfba67940f4bc329d9423d9091 # Parent d030e63b1ad13839091d76d08d6458a5cbe58962 euidaccess: speed up 'configure' on GNU hosts * m4/euidaccess.m4 (gl_FUNC_NONREENTRANT_EUIDACCESS): Check for setregid here, not in gl_PREREQ_EUIDACCESS, since it's needed only in this case. Use AC_CHECK_DECLS, not AC_CHECK_DECLS_ONCE. (gl_PREREQ_EUIDACCESS): Do not use AC_CHECK_HEADERS_ONCE libgen.h or AC_REQUIRE for AC_FUNC_GETGROUPS. diff -r d030e63b1ad1 -r 201a1d1767a6 ChangeLog --- a/ChangeLog Tue Oct 16 16:01:05 2012 -0700 +++ b/ChangeLog Tue Oct 16 18:58:09 2012 -0700 @@ -1,5 +1,13 @@ 2012-10-16 Paul Eggert + euidaccess: speed up 'configure' on GNU hosts + * m4/euidaccess.m4 (gl_FUNC_NONREENTRANT_EUIDACCESS): + Check for setregid here, not in gl_PREREQ_EUIDACCESS, since + it's needed only in this case. Use AC_CHECK_DECLS, not + AC_CHECK_DECLS_ONCE. + (gl_PREREQ_EUIDACCESS): Do not use AC_CHECK_HEADERS_ONCE libgen.h + or AC_REQUIRE for AC_FUNC_GETGROUPS. + * lib/regexec.c (re_search_internal): Fix grammar in comment. 2012-10-15 Paul Eggert diff -r d030e63b1ad1 -r 201a1d1767a6 m4/euidaccess.m4 --- a/m4/euidaccess.m4 Tue Oct 16 16:01:05 2012 -0700 +++ b/m4/euidaccess.m4 Tue Oct 16 18:58:09 2012 -0700 @@ -1,4 +1,4 @@ -# euidaccess.m4 serial 14 +# euidaccess.m4 serial 15 dnl Copyright (C) 2002-2012 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -7,6 +7,7 @@ AC_DEFUN([gl_FUNC_NONREENTRANT_EUIDACCESS], [ AC_REQUIRE([gl_FUNC_EUIDACCESS]) + AC_CHECK_DECLS([setregid]) AC_DEFINE([PREFER_NONREENTRANT_EUIDACCESS], [1], [Define this if you prefer euidaccess to return the correct result even if this would make it nonreentrant. Define this only if your @@ -33,9 +34,8 @@ dnl Prefer POSIX faccessat over non-standard euidaccess. AC_CHECK_FUNCS_ONCE([faccessat]) dnl Try various other non-standard fallbacks. - AC_CHECK_HEADERS_ONCE([libgen.h]) - AC_CHECK_DECLS_ONCE([setregid]) - AC_REQUIRE([AC_FUNC_GETGROUPS]) + AC_CHECK_HEADERS([libgen.h]) + AC_FUNC_GETGROUPS # Solaris 9 and 10 need -lgen to get the eaccess function. # Save and restore LIBS so -lgen isn't added to it. Otherwise, *all*