diff options
author | Bruno Haible <bruno@clisp.org> | 2011-05-22 14:08:12 +0200 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2011-06-16 00:06:57 +0200 |
commit | f9c05953abe71226e9714b22251327b8cbad8462 (patch) | |
tree | e532f72bf7908a7b540acd748253ece1270f8b5a /m4/strtoul.m4 | |
parent | d883d21093429a7826bf42556d4db32dd2d3975c (diff) | |
download | gnulib-f9c05953abe71226e9714b22251327b8cbad8462.tar.gz |
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.
Diffstat (limited to 'm4/strtoul.m4')
-rw-r--r-- | m4/strtoul.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/strtoul.m4 b/m4/strtoul.m4 index 06979d16cd..0f80e33eca 100644 --- 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 @@ dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_STRTOUL], [ - AC_REPLACE_FUNCS([strtoul]) + AC_CHECK_FUNCS([strtoul]) ]) |