diff options
author | Dmitrij Tejblum <tejblum@yandex-team.ru> | 2011-09-03 14:35:24 +0400 |
---|---|---|
committer | Dmitrij Tejblum <tejblum@yandex-team.ru> | 2011-09-05 11:08:04 +0400 |
commit | 68575f4babf4d6fc302c366898a1047f13629214 (patch) | |
tree | bcac6a113edcbe1cfadf2848e8ee7b9842bb5eb1 | |
parent | 84f6c0d6cecd039b5dc529b6c5eba136840a4010 (diff) |
build: build ospfd as Position-Independed Executable (if appropriate)
Since 46bc0e432e75, all the binaries are built as Position-Independed
Executables (if available and enabled). ospfd was missed for some
unknown reason.
-rw-r--r-- | ospfd/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ospfd/Makefile.am b/ospfd/Makefile.am index 2e4d5c8e..390f2e3f 100644 --- a/ospfd/Makefile.am +++ b/ospfd/Makefile.am @@ -4,6 +4,9 @@ INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib @SNMP_INCLUDES@ DEFS = @DEFS@ $(LOCAL_OPTS) -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 +AM_CFLAGS = $(PICFLAGS) +AM_LDFLAGS = $(PILDFLAGS) + lib_LTLIBRARIES = libospf.la libospf_la_LDFLAGS = -version 0:0:0 |