diff options
author | Bruno Haible <bruno@clisp.org> | 2011-05-21 15:38:22 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2011-05-21 15:38:22 +0200 |
commit | f56bca9f1091b3e6b3cf259d3a9f6c0859998a1c (patch) | |
tree | be5d1bd88512afdecc8187b80997716915c13eff | |
parent | 179ecbe2ce270a13d35953f23ba7f49acad1a4e4 (diff) | |
download | gnulib-f56bca9f1091b3e6b3cf259d3a9f6c0859998a1c.tar.gz |
mkdtemp: Use gnulib naming conventions.
* m4/mkdtemp.m4 (gl_FUNC_MKDTEMP): Renamed from gt_FUNC_MKDTEMP.
* modules/mkdtemp (configure.ac): Update.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | m4/mkdtemp.m4 | 4 | ||||
-rw-r--r-- | modules/mkdtemp | 2 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,9 @@ +2011-05-21 Bruno Haible <bruno@clisp.org> + + mkdtemp: Use gnulib naming conventions. + * m4/mkdtemp.m4 (gl_FUNC_MKDTEMP): Renamed from gt_FUNC_MKDTEMP. + * modules/mkdtemp (configure.ac): Update. + 2011-05-20 Eric Blake <eblake@redhat.com> strerror_r: avoid corrupting errno on Solaris diff --git a/m4/mkdtemp.m4 b/m4/mkdtemp.m4 index 0ef7dfb453..073e14d386 100644 --- a/m4/mkdtemp.m4 +++ b/m4/mkdtemp.m4 @@ -1,11 +1,11 @@ -# mkdtemp.m4 serial 6 +# mkdtemp.m4 serial 7 dnl Copyright (C) 2001-2003, 2006-2007, 2009-2011 Free Software Foundation, dnl 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. -AC_DEFUN([gt_FUNC_MKDTEMP], +AC_DEFUN([gl_FUNC_MKDTEMP], [ AC_REQUIRE([gl_STDLIB_H_DEFAULTS]) AC_REPLACE_FUNCS([mkdtemp]) diff --git a/modules/mkdtemp b/modules/mkdtemp index 4ca30c49ac..49ac06bcdd 100644 --- a/modules/mkdtemp +++ b/modules/mkdtemp @@ -11,7 +11,7 @@ stdint [test $HAVE_MKDTEMP = 0] tempname [test $HAVE_MKDTEMP = 0] configure.ac: -gt_FUNC_MKDTEMP +gl_FUNC_MKDTEMP gl_STDLIB_MODULE_INDICATOR([mkdtemp]) Makefile.am: |