]> git.ipfire.org Git - thirdparty/pdns.git/blame - m4/pdns_relro.m4
Merge pull request #7724 from omoerbeek/fix-unittest-order-deps
[thirdparty/pdns.git] / m4 / pdns_relro.m4
CommitLineData
d6e5e940
AT
1dnl
2dnl Check for -z now and -z relro linker flags
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_LD_RELRO],[
22 AC_MSG_CHECKING([for how to force completely read-only GOT table])
23
24 RELRO_LDFLAGS=
cc8ac2e9 25 ld_help=`$CXX -Wl,-help 2>&1`
d6e5e940
AT
26 case $ld_help in
27 *"-z relro"*) RELRO_LDFLAGS="-Wl,-z -Wl,relro" ;;
28 esac
29 case $ld_help in
30 *"-z now"*) RELRO_LDFLAGS="$RELRO_LDFLAGS -Wl,-z -Wl,now" ;;
31 esac
32 AC_SUBST([RELRO_LDFLAGS])
d9151447
RK
33 AS_IF([test "x$RELRO_LDFLAGS" != "x"],
34 [AC_MSG_RESULT([$RELRO_LDFLAGS])],
35 [AC_MSG_RESULT([unknown])]
36 )
d6e5e940 37])