diff options
author | Paul P Komkoff Jr <i@stingr.net> | 2008-08-13 16:17:04 +0100 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2008-08-22 19:52:12 +0100 |
commit | 46bc0e432e756fcb8fc4f703b47cd25b9fc7139c (patch) | |
tree | 60100ca1e11c3c3600441d366b236f4a2de519ca /zebra | |
parent | d664ae1182c29b74b409bc8594b7bd0575e91ce9 (diff) |
[build] Test for GNU-style PIE support in toolchain and enable
2008-08-13 Paul P Komkoff Jr <i@stingr.net>
* configure.ac: add a configure flag and autoconf macro, which will
determine if your toolchain supports PIE.
* */Makefile.am: add corresponding CFLAGS and LDFLAGS into
appropriate places.
Signed-off-by: Paul Jakma <paul@quagga.net>
Diffstat (limited to 'zebra')
-rw-r--r-- | zebra/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/Makefile.am b/zebra/Makefile.am index 5d8db411..542f36f4 100644 --- a/zebra/Makefile.am +++ b/zebra/Makefile.am @@ -19,6 +19,9 @@ ioctl_method = @IOCTL_METHOD@ otherobj = $(ioctl_method) $(ipforward) $(if_method) $(if_proc) \ $(rt_method) $(rtread_method) $(kernel_method) $(other_method) +AM_CFLAGS = $(PICFLAGS) +AM_LDFLAGS = $(PILDFLAGS) + sbin_PROGRAMS = zebra noinst_PROGRAMS = testzebra |