Edit

kc3-lang/automake/m4/protos.m4

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1997-02-22 22:30:16
    Hash : 36612ff6
    Message : macro fixes

  • m4/protos.m4
  • ## ------------------------------- ##
    ## Check for function prototypes.  ##
    ## From Franc,ois Pinard           ##
    ## ------------------------------- ##
    
    # serial 1
    
    AC_DEFUN(AM_C_PROTOTYPES,
    [AC_REQUIRE([AM_PROG_CC_STDC])
    AC_MSG_CHECKING([for function prototypes])
    if test "$am_cv_prog_cc_stdc" != no; then
      AC_MSG_RESULT(yes)
      AC_DEFINE(PROTOTYPES)
      U= ANSI2KNR=
    else
      AC_MSG_RESULT(no)
      U=_ ANSI2KNR=./ansi2knr
      # Ensure some checks needed by ansi2knr itself.
      AC_HEADER_STDC
      AC_CHECK_HEADERS(string.h)
    fi
    AC_SUBST(U)dnl
    AC_SUBST(ANSI2KNR)dnl
    ])