Mercurial > hg > octave-jordi > gnulib-hg
changeset 15071:98ec1e084801
rawmemchr: Move AC_LIBOBJ invocations to module description.
* m4/rawmemchr.m4 (gl_FUNC_RAWMEMCHR): Call AC_CHECK_FUNCS instead of
AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_RAWMEMCHR invocations
from here...
* modules/rawmemchr (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 17:53:55 +0200 |
parents | 221318b8a54e |
children | a30201cdf27e |
files | ChangeLog m4/rawmemchr.m4 modules/rawmemchr |
diffstat | 3 files changed, 14 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2011-05-21 Bruno Haible <bruno@clisp.org> + + rawmemchr: Move AC_LIBOBJ invocations to module description. + * m4/rawmemchr.m4 (gl_FUNC_RAWMEMCHR): Call AC_CHECK_FUNCS instead of + AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_RAWMEMCHR invocations + from here... + * modules/rawmemchr (configure.ac): ... to here. + 2011-05-21 Bruno Haible <bruno@clisp.org> random_r: Move AC_LIBOBJ invocations to module description.
--- a/m4/rawmemchr.m4 +++ b/m4/rawmemchr.m4 @@ -1,4 +1,4 @@ -# rawmemchr.m4 serial 1 +# rawmemchr.m4 serial 2 dnl Copyright (C) 2003, 2007-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, @@ -10,10 +10,9 @@ AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) - AC_REPLACE_FUNCS([rawmemchr]) + AC_CHECK_FUNCS([rawmemchr]) if test $ac_cv_func_rawmemchr = no; then HAVE_RAWMEMCHR=0 - gl_PREREQ_RAWMEMCHR fi ])