diff options
author | gdt <gdt> | 2004-07-23 18:23:56 +0200 |
---|---|---|
committer | gdt <gdt> | 2004-07-23 18:23:56 +0200 |
commit | b7a97f825768bb3e617cb115540c74b65914e628 (patch) | |
tree | 7614897d5d668291f854b5283daf424b55a12853 /ospfclient | |
parent | 2004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com> (diff) | |
download | frr-b7a97f825768bb3e617cb115540c74b65914e628.tar.xz frr-b7a97f825768bb3e617cb115540c74b65914e628.zip |
(somewhat unrelated cleanups, but all are very minor)
2004-07-23 Greg Troxel <gdt@poblano.ir.bbn.com>
* */Makefile.am: Use ../dir/libfoo.la, rather than "-L../dir
-lfoo", to avoid linking against installed libraries from a
previous version.
* {lib,ospfd,ospfclient}/Makefile.am: explicitly define the shared
library version number to be 0.0
* configure.ac: remove spurious , so extract.pl is chmod'd +x.
* HACKING: explain shared library versioning rules
Diffstat (limited to 'ospfclient')
-rw-r--r-- | ospfclient/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index 6c5a8cdd8..c50684624 100644 --- a/ospfclient/Makefile.am +++ b/ospfclient/Makefile.am @@ -3,6 +3,8 @@ INCLUDES = -I../lib -I../ lib_LTLIBRARIES = libospfapiclient.la +libospfapiclient_la_LDFLAGS = -version 0:0:0 + sbin_PROGRAMS = ospfclient libospfapiclient_la_SOURCES = \ @@ -17,6 +19,6 @@ ospfclient_SOURCES = \ ospfclient.c ospfclient_LDADD = libospfapiclient.la \ - -L../ospfd -lospf -L../lib -lzebra @LIBCAP@ + ../ospfd/libospf.la ../lib/libzebra.la @LIBCAP@ |