From: Trent Nelson Date: Sat, 25 Jun 2011 18:21:54 +0000 (-0400) Subject: Handle versioning the libtool way. X-Git-Tag: upstream/1.9.6^2~359^2~5 X-Git-Url: https://git.piment-noir.org/?p=deb_libnfs.git;a=commitdiff_plain;h=2842ff15c8c62dce60a7988ad41a1e89316581a0 Handle versioning the libtool way. --- diff --git a/configure.ac b/configure.ac index ca6eead..4da0ef9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.50) -AC_INIT([libnfs], [1.0.0]) +AC_INIT([libnfs], [0.0.0]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE([foreign]) AC_CANONICAL_HOST diff --git a/lib/Makefile.am b/lib/Makefile.am index 499a155..ba0eb43 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -14,6 +14,7 @@ libnfs_la_SOURCES = \ pdu.c \ socket.c +libnfs_la_LDFLAGS = -version-info 0:0:0 libnfs_la_LIBADD = \ $(abs_top_srcdir)/mount/libmount.la \ $(abs_top_srcdir)/nfs/libnfs.la \