diff options
author | Paul P Komkoff Jr <i@stingr.net> | 2008-08-13 17:17:04 +0200 |
---|---|---|
committer | Paul Jakma <paul@quagga.net> | 2008-08-22 20:52:12 +0200 |
commit | 46bc0e432e756fcb8fc4f703b47cd25b9fc7139c (patch) | |
tree | 60100ca1e11c3c3600441d366b236f4a2de519ca /ospfclient | |
parent | [bgpd] Add 'bgp open-accept' option, to send OPEN immediately on accepted conns (diff) | |
download | frr-46bc0e432e756fcb8fc4f703b47cd25b9fc7139c.tar.xz frr-46bc0e432e756fcb8fc4f703b47cd25b9fc7139c.zip |
[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 'ospfclient')
-rw-r--r-- | ospfclient/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index ab2a3786e..b8aae84bb 100644 --- a/ospfclient/Makefile.am +++ b/ospfclient/Makefile.am @@ -21,4 +21,6 @@ ospfclient_SOURCES = \ ospfclient_LDADD = libospfapiclient.la \ ../ospfd/libospf.la ../lib/libzebra.la @LIBCAP@ +ospfclient_CFLAGS = $(AM_CFLAGS) $(PICFLAGS) +ospfclient_LDFLAGS = $(AM_LDFLAGS) $(PILDFLAGS) |