source: trunk/essentials/sys-devel/automake-1.7/m4/protos.m4

Last change on this file was 3120, checked in by bird, 18 years ago

automake 1.7.9

File size: 1.4 KB
Line 
1## ------------------------------- ##
2## Check for function prototypes. ##
3## From Franc,ois Pinard ##
4## ------------------------------- ##
5
6# Copyright 1996, 1997, 1998, 2000, 2001, 2002 Free Software Foundation, Inc.
7
8# This program is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 2, or (at your option)
11# any later version.
12
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21# 02111-1307, USA.
22
23# serial 2
24
25AC_DEFUN([AM_C_PROTOTYPES],
26[AC_REQUIRE([AM_PROG_CC_STDC])
27AC_REQUIRE([AC_PROG_CPP])
28AC_MSG_CHECKING([for function prototypes])
29if test "$am_cv_prog_cc_stdc" != no; then
30 AC_MSG_RESULT(yes)
31 AC_DEFINE(PROTOTYPES,1,[Define if compiler has function prototypes])
32 U= ANSI2KNR=
33else
34 AC_MSG_RESULT(no)
35 U=_ ANSI2KNR=./ansi2knr
36fi
37# Ensure some checks needed by ansi2knr itself.
38AC_HEADER_STDC
39AC_CHECK_HEADERS(string.h)
40AC_SUBST(U)dnl
41AC_SUBST(ANSI2KNR)dnl
42])
43
44AU_DEFUN([fp_C_PROTOTYPES], [AM_C_PROTOTYPES])
Note: See TracBrowser for help on using the repository browser.