* subdir3.test: Allow any number of dependencies.
[automake.git] / m4 / protos.m4
blob9fe3adbea9240cdf7e93f442bed18a47ab65f03f
1 ## ------------------------------- ##
2 ## Check for function prototypes.  ##
3 ## From Franc,ois Pinard           ##
4 ## ------------------------------- ##
6 # serial 1
8 AC_DEFUN([AM_C_PROTOTYPES],
9 [AC_REQUIRE([AM_PROG_CC_STDC])
10 AC_REQUIRE([AC_PROG_CPP])
11 AC_MSG_CHECKING([for function prototypes])
12 if test "$am_cv_prog_cc_stdc" != no; then
13   AC_MSG_RESULT(yes)
14   AC_DEFINE(PROTOTYPES,1,[Define if compiler has function prototypes])
15   U= ANSI2KNR=
16 else
17   AC_MSG_RESULT(no)
18   U=_ ANSI2KNR=./ansi2knr
20 # Ensure some checks needed by ansi2knr itself.
21 AC_HEADER_STDC
22 AC_CHECK_HEADERS(string.h)
23 AC_SUBST(U)dnl
24 AC_SUBST(ANSI2KNR)dnl