]> git.ipfire.org Git - thirdparty/pdns.git/blame - m4/pdns_d_fortify_source.m4
Update rules-actions.rst
[thirdparty/pdns.git] / m4 / pdns_d_fortify_source.m4
CommitLineData
5801cd92 1dnl
9145fc8e 2dnl Check for support D_FORTIFY_SOURCE
5801cd92
AT
3dnl
4dnl Copyright (C) 2013 Red Hat, Inc.
5dnl
6dnl This library is free software; you can redistribute it and/or
7dnl modify it under the terms of the GNU Lesser General Public
8dnl License as published by the Free Software Foundation; either
9dnl version 2.1 of the License, or (at your option) any later version.
10dnl
11dnl This library is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14dnl Lesser General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU Lesser General Public
17dnl License along with this library. If not, see
18dnl <http://www.gnu.org/licenses/>.
19dnl
20
21AC_DEFUN([AC_CC_D_FORTIFY_SOURCE],[
9145fc8e
AT
22 OLD_CXXFLAGS="$CXXFLAGS"
23 CXXFLAGS="-Wall -W -Werror $CXXFLAGS"
5801cd92 24 gl_COMPILER_OPTION_IF([-D_FORTIFY_SOURCE=2], [
d1840ef2
CH
25 CFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $CFLAGS"
26 CXXFLAGS="-U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $OLD_CXXFLAGS"
9145fc8e 27 ], [CXXFLAGS="$OLD_CXXFLAGS"], [AC_LANG_PROGRAM([[#include <stdio.h>]],[])])
5801cd92 28])