(AUTOMAKE_OPTIONS): Use ansi2knr so *I* don't
[gnulib.git] / m4 / check-decl.m4
1 dnl This is just a wrapper function to encapsulate this kludge.
2 dnl Putting it in a separate file like this helps share it between
3 dnl different packages.
4 AC_DEFUN(jm_CHECK_DECLS,
5 [
6   if test x = y; then
7     dnl This code is deliberately never run via ./configure.
8     dnl FIXME: this is a gross hack to make autoheader put entries
9     dnl for each of these symbols in the config.h.in.
10     dnl Otherwise, I'd have to update acconfig.h every time I change
11     dnl this list of functions.
12     AC_CHECK_FUNCS(DECLARATION_FREE DECLARATION_MALLOC DECLARATION_REALLOC \
13                    DECLARATION_STPCPY DECLARATION_STRSTR)
14   fi
15   jm_CHECK_DECLARATIONS(free malloc realloc stpcpy strstr)
16 ])