blob: 02a9602b5c96bab0eff7a4ae427916bce583c960 [file] [log] [blame]
Alexey Kodanev20eb0712014-04-11 13:26:59 +04001dnl Copyright (c) 2014 Oracle and/or its affiliates. All Rights Reserved.
2dnl
3dnl This program is free software; you can redistribute it and/or
4dnl modify it under the terms of the GNU General Public License as
5dnl published by the Free Software Foundation; either version 2 of
6dnl the License, or (at your option) any later version.
7dnl
8dnl This program is distributed in the hope that it would be useful,
9dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
10dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11dnl GNU General Public License for more details.
12dnl
13dnl You should have received a copy of the GNU General Public License
14dnl along with this program; if not, write the Free Software Foundation,
15dnl Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
16dnl
17dnl Author: Alexey Kodanev <alexey.kodanev@oracle.com>
18dnl
19
20AC_DEFUN([LTP_CHECK_CC_WARN_OLDSTYLE],[dnl
21
22AC_MSG_CHECKING([if $CC supports -Wold-style-definition])
23
24backup_cflags="$CFLAGS"
25CFLAGS="-Wold-style-definition"
26
27AC_LINK_IFELSE(
28 [AC_LANG_PROGRAM([])],
29 [GCC_WARN_OLDSTYLE="$CFLAGS"]
30 [AC_MSG_RESULT([yes])],
31 [AC_MSG_RESULT([no])]
32)
33
34AC_SUBST(GCC_WARN_OLDSTYLE)
35CFLAGS="$backup_cflags"
36
37])