backup: Wire up qemu full pull backup commands over QMP
[libvirt/ericb.git] / m4 / virt-compile-pie.m4
bloba2df38ea7272a1230ddd7853bfb89c2864e23777
1 dnl
2 dnl Check for support for position independent executables
3 dnl
4 dnl Copyright (C) 2013 Red Hat, Inc.
5 dnl
6 dnl This library is free software; you can redistribute it and/or
7 dnl modify it under the terms of the GNU Lesser General Public
8 dnl License as published by the Free Software Foundation; either
9 dnl version 2.1 of the License, or (at your option) any later version.
10 dnl
11 dnl This library is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 dnl Lesser General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU Lesser General Public
17 dnl License along with this library.  If not, see
18 dnl <http://www.gnu.org/licenses/>.
19 dnl
21 AC_DEFUN([LIBVIRT_COMPILE_PIE],[
22     PIE_CFLAGS=
23     PIE_LDFLAGS=
24     case "$host" in
25       *-*-mingw* | *-*-msvc* | *-*-cygwin* )
26          ;; dnl All code is position independent on Win32 target
27       *)
28       gl_COMPILER_OPTION_IF([-fPIE -DPIE -pie], [
29         PIE_CFLAGS="-fPIE -DPIE"
30         PIE_LDFLAGS="-pie"
31       ])
32     esac
33     AC_SUBST([PIE_CFLAGS])
34     AC_SUBST([PIE_LDFLAGS])