From 2842ff15c8c62dce60a7988ad41a1e89316581a0 Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Sat, 25 Jun 2011 14:21:54 -0400 Subject: [PATCH] Handle versioning the libtool way. --- configure.ac | 2 +- lib/Makefile.am | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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 \ -- 2.34.1