Mercurial > hg > octave-nkf > gnulib-hg
changeset 15115:51c87706ae95
strtoul: Move AC_LIBOBJ invocations to module description.
* m4/strtoul.m4 (gl_FUNC_STRTOUL): Call AC_CHECK_FUNCS instead of
AC_REPLACE_FUNCS. Move AC_LIBOBJ invocation from here...
* modules/strtoul (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 22 May 2011 14:08:12 +0200 |
parents | b34e684f6884 |
children | c172d08b442a |
files | ChangeLog m4/strtoul.m4 modules/strtoul |
diffstat | 3 files changed, 12 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2011-05-22 Bruno Haible <bruno@clisp.org> + + strtoul: Move AC_LIBOBJ invocations to module description. + * m4/strtoul.m4 (gl_FUNC_STRTOUL): Call AC_CHECK_FUNCS instead of + AC_REPLACE_FUNCS. Move AC_LIBOBJ invocation from here... + * modules/strtoul (configure.ac): ... to here. + 2011-05-22 Bruno Haible <bruno@clisp.org> strtol: Move AC_LIBOBJ invocations to module description.
--- a/m4/strtoul.m4 +++ b/m4/strtoul.m4 @@ -1,4 +1,4 @@ -# strtoul.m4 serial 4 +# strtoul.m4 serial 5 dnl Copyright (C) 2002, 2006, 2009-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -6,5 +6,5 @@ AC_DEFUN([gl_FUNC_STRTOUL], [ - AC_REPLACE_FUNCS([strtoul]) + AC_CHECK_FUNCS([strtoul]) ])