
brad at comstyle
Aug 8, 2012, 6:40 PM
Post #1 of 1
(143 views)
Permalink
|
|
[PATCH] Correct libtool parameter used within Makefiles
|
|
This corrects the parameters passed to libtool when linking the shared libraries. The paramter name is -version-info not -version. diff --git a/ospfclient/Makefile.am b/ospfclient/Makefile.am index 607bbed..0f37aa9 100644 --- a/ospfclient/Makefile.am +++ b/ospfclient/Makefile.am @@ -3,7 +3,7 @@ INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib lib_LTLIBRARIES = libospfapiclient.la -libospfapiclient_la_LDFLAGS = -version 0:0:0 +libospfapiclient_la_LDFLAGS = -version-info 0:0:0 sbin_PROGRAMS = ospfclient diff --git a/ospfd/Makefile.am b/ospfd/Makefile.am index f968d7d..4e1a4fe 100644 --- a/ospfd/Makefile.am +++ b/ospfd/Makefile.am @@ -5,7 +5,7 @@ DEFS = @DEFS@ $(LOCAL_OPTS) -DSYSCONFDIR=\"$(sysconfdir)/\" INSTALL_SDATA=@INSTALL@ -m 600 lib_LTLIBRARIES = libospf.la -libospf_la_LDFLAGS = -version 0:0:0 +libospf_la_LDFLAGS = -version-info 0:0:0 sbin_PROGRAMS = ospfd -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. _______________________________________________ Quagga-dev mailing list Quagga-dev [at] lists http://lists.quagga.net/mailman/listinfo/quagga-dev
|