root / firmware / fx2 / config / lf_cc.m4 @ 70eae1d2
History | View | Annotate | Download (1.7 kB)
| 1 |
dnl Autoconf support for C++ |
|---|---|
| 2 |
dnl Copyright (C) 1988 Eleftherios Gkioulekas <lf@amath.washington.edu> |
| 3 |
dnl |
| 4 |
dnl This program is free software; you can redistribute it and/or modify |
| 5 |
dnl it under the terms of the GNU General Public License as published by |
| 6 |
dnl the Free Software Foundation; either version 3 of the License, or |
| 7 |
dnl (at your option) any later version. |
| 8 |
dnl |
| 9 |
dnl This program is distributed in the hope that it will be useful, |
| 10 |
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 |
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 |
dnl GNU General Public License for more details. |
| 13 |
dnl |
| 14 |
dnl You should have received a copy of the GNU General Public License |
| 15 |
dnl along with this program; if not, write to the Free Software |
| 16 |
dnl Foundation, Inc., 51 Franklin Street, Boston, MA 02110-1301, USA. |
| 17 |
dnl |
| 18 |
dnl As a special exception to the GNU General Public License, if you |
| 19 |
dnl distribute this file as part of a program that contains a configuration |
| 20 |
dnl script generated by Autoconf, you may include it under the same |
| 21 |
dnl distribution terms that you use for the rest of that program. |
| 22 |
|
| 23 |
# ------------------------------------------------------------------------- |
| 24 |
# Use this macro to configure your C compiler |
| 25 |
# When called the macro does the following things: |
| 26 |
# 1. It finds an appropriate C compiler. |
| 27 |
# If you passed the flag --with-cc=foo then it uses that |
| 28 |
# particular compiler |
| 29 |
# 2. Check whether the compiler works. |
| 30 |
# 3. Checks whether the compiler accepts the -g |
| 31 |
# ------------------------------------------------------------------------- |
| 32 |
|
| 33 |
AC_DEFUN([LF_CONFIGURE_CC],[ |
| 34 |
dnl Sing the song |
| 35 |
AC_REQUIRE([AC_PROG_CC])dnl |
| 36 |
AC_REQUIRE([AC_PROG_CPP])dnl |
| 37 |
AC_REQUIRE([AC_AIX])dnl |
| 38 |
AC_REQUIRE([AC_ISC_POSIX])dnl |
| 39 |
AC_REQUIRE([AC_HEADER_STDC])dnl |
| 40 |
]) |
| 41 |
|