annotate m4/mkdtemp.m4 @ 40231:9b3c79fdfe0b

strtod: fix clash with strtold Problem reported for RHEL 5 by Jesse Caldwell (Bug#34817). * lib/strtod.c (compute_minus_zero, minus_zero): Simplify by remving the macro / external variable, and having just a function. User changed. This avoids the need for an external variable that might clash.
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 11 Mar 2019 16:40:29 -0700
parents b06060465f09
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15045
8484091dcead mkdtemp: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14785
diff changeset
1 # mkdtemp.m4 serial 8
40057
b06060465f09 maint: Run 'make update-copyright'
Paul Eggert <eggert@cs.ucla.edu>
parents: 19484
diff changeset
2 dnl Copyright (C) 2001-2003, 2006-2007, 2009-2019 Free Software Foundation,
12559
c2cbabec01dd update nearly all FSF copyright year lists to include 2010
Jim Meyering <meyering@redhat.com>
parents: 11007
diff changeset
3 dnl Inc.
5585
adff74659d81 Use an all-permissive copyright notice, recommended by RMS.
Bruno Haible <bruno@clisp.org>
parents: 5016
diff changeset
4 dnl This file is free software; the Free Software Foundation
adff74659d81 Use an all-permissive copyright notice, recommended by RMS.
Bruno Haible <bruno@clisp.org>
parents: 5016
diff changeset
5 dnl gives unlimited permission to copy and/or distribute it,
adff74659d81 Use an all-permissive copyright notice, recommended by RMS.
Bruno Haible <bruno@clisp.org>
parents: 5016
diff changeset
6 dnl with or without modifications, as long as this notice is preserved.
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
14785
731eb6ec9b71 mkdtemp: Use gnulib naming conventions.
Bruno Haible <bruno@clisp.org>
parents: 14079
diff changeset
8 AC_DEFUN([gl_FUNC_MKDTEMP],
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 [
8192
b9003c1ee8fa mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents: 7588
diff changeset
10 AC_REQUIRE([gl_STDLIB_H_DEFAULTS])
15045
8484091dcead mkdtemp: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14785
diff changeset
11 AC_CHECK_FUNCS([mkdtemp])
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 if test $ac_cv_func_mkdtemp = no; then
8192
b9003c1ee8fa mkdtemp.h is replaced with <stdlib.h>.
Bruno Haible <bruno@clisp.org>
parents: 7588
diff changeset
13 HAVE_MKDTEMP=0
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 fi
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 ])
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
16
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 # Prerequisites of lib/mkdtemp.c
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18 AC_DEFUN([gl_PREREQ_MKDTEMP],
7588
66be60b7a727 * modules/tmpdir (Depends-on): Add sys_stat.
Eric Blake <ebb9@byu.net>
parents: 7293
diff changeset
19 [:
4237
723deab1223e mkdtemp() function: create a private temporary directory.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 ])