From: ellson Date: Wed, 18 Feb 2009 16:14:11 +0000 (+0000) Subject: move library versioning from configure.ac, to teh Makefile.am, so X-Git-Tag: LAST_LIBGRAPH~32^2~2476 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d76530eaa871e6a9ad425d62d7a4f7e79b7ac787;p=graphviz move library versioning from configure.ac, to teh Makefile.am, so that libraries can have their .so versions bumped independantly --- diff --git a/lib/agraph/Makefile.am b/lib/agraph/Makefile.am index 60c59f67d..fe6ed34a5 100644 --- a/lib/agraph/Makefile.am +++ b/lib/agraph/Makefile.am @@ -1,6 +1,8 @@ # $Id$ $Revision$ ## Process this file with automake to produce Makefile.in +AGRAPH_VERSION="4:0:0" + pdfdir = $(pkgdatadir)/doc/pdf pkgconfigdir = $(libdir)/pkgconfig @@ -24,7 +26,7 @@ libagraph_C_la_SOURCES = agerror.c apply.c attr.c \ mem.c node.c obj.c pend.c rec.c refstr.c scan.l subg.c \ utils.c write.c -libagraph_la_LDFLAGS = -version-info @VERSION_INFO@ -no-undefined +libagraph_la_LDFLAGS = -version-info $(AGRAPH_VERSION) -no-undefined libagraph_la_SOURCES = $(libagraph_C_la_SOURCES) libagraph_la_LIBADD = $(top_builddir)/lib/cdt/libcdt.la