annotate m4/times.m4 @ 15083:0c86c6d851e0

renameat: Move AC_LIBOBJ invocations to module description. * m4/renameat.m4 (gl_FUNC_RENAMEAT): Move AC_LIBOBJ invocations from here... * modules/renameat (configure.ac): ... to here.
author Bruno Haible <bruno@clisp.org>
date Sat, 21 May 2011 20:53:14 +0200
parents 97fc9a21a8fb
children dc03b3279cc1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
12543
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 # times.m4 serial 1
14079
97fc9a21a8fb maint: update almost all copyright ranges to include 2011
Jim Meyering <meyering@redhat.com>
parents: 12559
diff changeset
2 dnl Copyright (C) 2009-2011 Free Software Foundation, Inc.
12543
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3 dnl This file is free software; the Free Software Foundation
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 dnl gives unlimited permission to copy and/or distribute it,
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 dnl with or without modifications, as long as this notice is preserved.
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 AC_DEFUN([gl_FUNC_TIMES],
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 [
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 AC_REQUIRE([gl_SYS_TIMES_H_DEFAULTS])
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 AC_CHECK_FUNCS_ONCE([times])
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 if test $ac_cv_func_times = no; then
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 HAVE_TIMES=0
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 AC_LIBOBJ([times])
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 fi
62393c457544 times: Update after sys_times changed.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 ])